Skip to content

Commit fa6f60f

Browse files
committed
refactor: clean!
1 parent 04ab3de commit fa6f60f

227 files changed

Lines changed: 7562 additions & 8823 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

e2e/__helpers__/test-case.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,13 @@ class TestCaseRunDescriptor {
6363

6464
runWithTemplates<T extends string>(
6565
logUnlessStatus: number,
66+
// tslint:disable-next-line:trailing-comma
6667
...templates: T[]
6768
): TestRunResultsMap<T>;
6869
runWithTemplates<T extends string>(...templates: T[]): TestRunResultsMap<T>;
6970
runWithTemplates<T extends string>(
7071
logUnlessStatus: number | T,
72+
// tslint:disable-next-line:trailing-comma
7173
...templates: T[]
7274
): TestRunResultsMap<T> {
7375
if (typeof logUnlessStatus !== 'number') {
@@ -98,6 +100,7 @@ class TestCaseRunDescriptor {
98100
}
99101
}
100102

103+
// tslint:disable-next-line:variable-name
101104
export const TestRunResultFlag = Symbol.for('[ts-jest-test-run-result]');
102105

103106
export interface RunTestOptions {

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = {
1010
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
1111
globals: {
1212
'ts-jest': {
13-
tsConfigFile: 'tsconfig.base.json',
13+
tsConfig: 'tsconfig.base.json',
1414
},
1515
},
1616
};

jest.config.tests.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)