diff options
-rw-r--r-- | jest.config.js | 6 | ||||
-rw-r--r-- | jest.config.json | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/jest.config.js b/jest.config.js deleted file mode 100644 index 41f1c01..0000000 --- a/jest.config.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - preset: 'ts-jest', - testEnvironment: 'node', - globalSetup: "./test/setup.ts", - globalTeardown: "./test/teardown.ts" -};
\ No newline at end of file diff --git a/jest.config.json b/jest.config.json new file mode 100644 index 0000000..66dfe2a --- /dev/null +++ b/jest.config.json @@ -0,0 +1,6 @@ +{ + "preset": "ts-jest", + "testEnvironment": "node", + "globalSetup": "./test/setup.ts", + "globalTeardown": "./test/teardown.ts" +}
\ No newline at end of file |