Skip to content

Commit 058bad9

Browse files
committed
new version
1 parent 7469633 commit 058bad9

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ All available languages are currently listed in the [i18n](https://github.com/di
172172
### Push to git
173173

174174
Pushing to git is on by default but if you would like to turn it off just use:
175+
175176
```sh
176177
oc config set OCO_GITPUSH=false
177178
```

jest.config.ts

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,25 @@
33
* https://jestjs.io/docs/configuration
44
*/
55

6-
import type {Config} from 'jest';
6+
import type { Config } from 'jest';
77

88
const config: Config = {
9-
coverageProvider: "v8",
10-
moduleDirectories: [
11-
"node_modules",
12-
"src",
13-
],
9+
testTimeout: 100_000,
10+
coverageProvider: 'v8',
11+
moduleDirectories: ['node_modules', 'src'],
1412
preset: 'ts-jest/presets/js-with-ts-esm',
1513
setupFilesAfterEnv: ['<rootDir>/test/jest-setup.ts'],
16-
testEnvironment: "node",
17-
testRegex: [
18-
'.*\\.test\\.ts$',
19-
],
14+
testEnvironment: 'node',
15+
testRegex: ['.*\\.test\\.ts$'],
2016
transformIgnorePatterns: ['node_modules/(?!cli-testing-library)'],
2117
transform: {
22-
'^.+\\.(ts|tsx)$': ['ts-jest', {
23-
diagnostics: false,
24-
useESM: true
25-
}],
18+
'^.+\\.(ts|tsx)$': [
19+
'ts-jest',
20+
{
21+
diagnostics: false,
22+
useESM: true
23+
}
24+
]
2625
}
2726
};
2827

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)