Skip to content

Commit 9511f82

Browse files
committed
test: update remove solutions style tsconfig test to extend tsconfig.base.json
1 parent 819790e commit 9511f82

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/schematics/angular/migrations/update-10/remove-solution-style-tsconfig_spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ describe('Migration to remove "Solution Style" tsconfig', () => {
7373
createJsonFile(tree, 'tsconfig.json', { files: [] });
7474
createJsonFile(tree, 'tsconfig.base.json', { compilerOptions });
7575
createJsonFile(tree, 'tsconfig.common.json', { compilerOptions });
76-
createJsonFile(tree, 'src/tsconfig.json', { extends: './../tsconfig.json', compilerOptions });
77-
createJsonFile(tree, 'src/tsconfig.base.json', { extends: './../tsconfig.json', compilerOptions });
76+
createJsonFile(tree, 'src/tsconfig.json', { extends: './../tsconfig.base.json', compilerOptions });
77+
createJsonFile(tree, 'src/tsconfig.base.json', { extends: './../tsconfig.base.json', compilerOptions });
7878
createJsonFile(tree, 'src/tsconfig.tsc.json', { extends: './tsconfig.base.json', compilerOptions });
7979
createJsonFile(tree, 'src/tsconfig.app.json', { extends: './../tsconfig.common.json', compilerOptions });
80-
createJsonFile(tree, 'src/tsconfig.spec.json', { extends: './../tsconfig.json', compilerOptions });
81-
createJsonFile(tree, 'src/tsconfig.worker.json', { extends: './../tsconfig.json', compilerOptions });
80+
createJsonFile(tree, 'src/tsconfig.spec.json', { extends: './../tsconfig.base.json', compilerOptions });
81+
createJsonFile(tree, 'src/tsconfig.worker.json', { extends: './../tsconfig.base.json', compilerOptions });
8282
});
8383

8484
it(`should rename 'tsconfig.base.json' to 'tsconfig.json'`, async () => {

0 commit comments

Comments
 (0)