Skip to content

Commit ed416d0

Browse files
update tsconfig
1 parent eded88e commit ed416d0

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

core/test/context/providers/index.skip.ts renamed to core/test/context/providers/index.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async function getContextProviderExtras(
4646
};
4747
}
4848

49-
describe("Should successfully run all context providers", () => {
49+
describe.skip("Should successfully run all context providers", () => {
5050
const extrasPromise = getContextProviderExtras("Test");
5151

5252
CONTEXT_PROVIDERS_TO_TEST.forEach((provider) => {

extensions/vscode/tsconfig.json

+4-8
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,12 @@
66
"outDir": "out/tsc/src",
77
"sourceMap": true,
88
"rootDir": "../../",
9-
"strict": true /* enable all strict type-checking options */,
10-
/* Additional Checks */
11-
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
12-
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
13-
// "noUnusedParameters": true, /* Report errors on unused parameters. */
14-
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
15-
"resolveJsonModule": true /* Enable importing .json files */,
9+
"strict": true,
10+
"esModuleInterop": true,
11+
"resolveJsonModule": true,
1612
"types": ["mocha"] // This solves conflict between jest and mocha: https://github.com/cypress-io/cypress/issues/7435#issuecomment-631695007
1713
},
1814
"include": ["src/**/*", "../../core/**/*.ts", "../../core/**/*.d.ts"],
1915
// core/test uses @types/jest, which conflicts with @types/mocha
20-
"exclude": ["../../core/dist/**/*", "../../core/test/**/*"]
16+
"exclude": ["../../core/dist/**/*", "../../core/**/*.test.ts"]
2117
}

0 commit comments

Comments
 (0)