Skip to content

Commit

Permalink
review(tr): fix tests following bit flip
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaskiewicz committed Jun 26, 2023
1 parent 9923de2 commit eb50ad9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/compiler/config/test/validate-output-dist.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('validateDistOutputTarget', () => {
type: 'dist',
polyfills: undefined,
typesDir: path.join(rootDir, 'my-dist', 'types'),
transformAliasedImportPathsInCollection: false,
transformAliasedImportPathsInCollection: true,
isPrimaryPackageOutputTarget: false,
},
{
Expand Down Expand Up @@ -65,7 +65,7 @@ describe('validateDistOutputTarget', () => {
collectionDir: path.join(rootDir, 'my-dist', 'collection'),
dir: path.join(rootDir, '/my-dist'),
empty: false,
transformAliasedImportPaths: false,
transformAliasedImportPaths: true,
type: 'dist-collection',
},
{
Expand Down Expand Up @@ -223,7 +223,7 @@ describe('validateDistOutputTarget', () => {
type: 'dist',
polyfills: undefined,
typesDir: path.join(rootDir, 'my-dist', 'types'),
transformAliasedImportPathsInCollection: false,
transformAliasedImportPathsInCollection: true,
isPrimaryPackageOutputTarget: true,
},
{
Expand Down Expand Up @@ -255,7 +255,7 @@ describe('validateDistOutputTarget', () => {
collectionDir: path.join(rootDir, 'my-dist', 'collection'),
dir: path.join(rootDir, '/my-dist'),
empty: false,
transformAliasedImportPaths: false,
transformAliasedImportPaths: true,
type: 'dist-collection',
},
{
Expand Down

0 comments on commit eb50ad9

Please sign in to comment.