Skip to content

Commit 09a1a6d

Browse files
authored
openapi3-ts v3.0.0 (#153)
* openapi3-ts v3.0.0 * Disable codecov
1 parent fbbdc96 commit 09a1a6d

File tree

6 files changed

+86
-387
lines changed

6 files changed

+86
-387
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@ jobs:
1818
- run: npm run test:format
1919
- run: npm run test:lint
2020
- run: npm test
21-
- run: npm run send-coverage

jest.config.js

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,11 @@
11
module.exports = {
22
testEnvironment: 'node',
33
transform: {
4-
"^.+\\.tsx?$": "ts-jest"
4+
'^.+\\.tsx?$': 'ts-jest',
55
},
6-
testRegex: "(/__tests__/.*|\\.(test))\\.(ts|js)$",
6+
testRegex: '(/__tests__/.*|\\.(test))\\.(ts|js)$',
77
moduleDirectories: ['node_modules', 'src'],
88
moduleFileExtensions: ['ts', 'js', 'json'],
9-
roots: [
10-
'<rootDir>/__tests__'
11-
],
12-
testPathIgnorePatterns: [
13-
'/node_modules/',
14-
'/__tests__/fixtures/'
15-
],
16-
coverageDirectory: 'coverage',
17-
collectCoverageFrom: [
18-
'src/**/*.{ts,tsx,js,jsx}',
19-
'!src/**/*.d.ts',
20-
]
21-
};
9+
roots: ['<rootDir>/__tests__'],
10+
testPathIgnorePatterns: ['/node_modules/', '/__tests__/fixtures/'],
11+
}

0 commit comments

Comments
 (0)