diff --git a/projects/nx-verdaccio/src/plugin/targets/environment.targets.unit-test.ts b/projects/nx-verdaccio/src/plugin/targets/environment.targets.unit-test.ts new file mode 100644 index 00000000..e529395e --- /dev/null +++ b/projects/nx-verdaccio/src/plugin/targets/environment.targets.unit-test.ts @@ -0,0 +1,61 @@ +import { describe } from 'vitest'; + +describe('isEnvProject', () => { + //export function isEnvProject( + // projectConfig: ProjectConfiguration, + // options: NormalizedCreateNodeOptions['environments'] + // ): boolean { + // const { tags: existingTags = [], targets } = projectConfig; + // const existingTargetNames = Object.keys(targets ?? {}); + // const { + // filterByTags: environmentsTagFilters, + // targetNames: environmentTargetNames, + // } = options; + // + + + // if (!existingTargetNames || !environmentTargetNames) { + // return false; + // } + // + // if ( + // existingTargetNames.some((existingTarget) => + // environmentTargetNames.includes(existingTarget) + // ) + // ) { + // if (existingTags && environmentsTagFilters) { + // return existingTags.some((existingTag) => + // environmentsTagFilters.includes(existingTag) + // ); + // } + // return true; + // } + // + // return false; + // } + + // IT test + // if (!existingTargetNames || !environmentTargetNames) { + // return false; + // } + + // IT test + // if ( + // existingTargetNames.some((existingTarget) => + // environmentTargetNames.includes(existingTarget) + // ) + // ) { + // IT test + // if (existingTags && environmentsTagFilters) { + // return existingTags.some((existingTag) => + // environmentsTagFilters.includes(existingTag) + // ); + // } + + // return true; + // } + // IT test + // // return false; + + +})