mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-13 17:14:02 +03:00
c03e8b7946
I enabled vscode autocomplete in our test files. Typechecking had too many errors to enable, but it caught some real bugs that I will fix in a follow up. This patch contains: * `test/types.d.ts` - d.ts file for our test runner. * `test/tsconfig.json` - typescript project for our tests. * JSDoc header in all specs to mark the describe as a TestSuite * Drive-by fix of a launcher test that was using `if` instead of `it` * Some drive-by fixes of unimpactful typos in tests.
11 lines
254 B
JSON
11 lines
254 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"noEmit": true,
|
|
"moduleResolution": "node",
|
|
"target": "ESNext",
|
|
"strictNullChecks": false,
|
|
},
|
|
"include": ["*.spec.js", "types.d.ts"]
|
|
} |