Skip to content

Commit aadf779

Browse files
alan-agius4dgp1130
authored andcommitted
test: add e2e test to test disabled skipLibCheck
1 parent 3ae1eb6 commit aadf779

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { ng } from '../../utils/process';
2+
import { createProject, updateTsConfig } from '../../utils/project';
3+
4+
5+
export default async function() {
6+
await createProject('strict-workspace-test-project', '--strict');
7+
await updateTsConfig(json => {
8+
json['compilerOptions']['skipLibCheck'] = false;
9+
});
10+
await ng('build');
11+
}

0 commit comments

Comments
 (0)