From 3371218c4cc5edd6cba822e8f631bae08dbf69bc Mon Sep 17 00:00:00 2001 From: ICHINOSE Shogo Date: Sat, 29 Jul 2023 00:34:17 +0900 Subject: [PATCH] jest-circus is now default test runner --- jest.config.js | 11 +++++------ package-lock.json | 1 - package.json | 1 - 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/jest.config.js b/jest.config.js index a977c637..40e71e3f 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,11 +1,10 @@ module.exports = { clearMocks: true, - moduleFileExtensions: ['js', 'ts'], - testEnvironment: 'node', - testMatch: ['**/*.test.ts'], - testRunner: 'jest-circus/runner', + moduleFileExtensions: ["js", "ts"], + testEnvironment: "node", + testMatch: ["**/*.test.ts"], transform: { - '^.+\\.ts$': 'ts-jest' + "^.+\\.ts$": "ts-jest", }, - verbose: true + verbose: true, }; diff --git a/package-lock.json b/package-lock.json index 90e224d3..495c8751 100644 --- a/package-lock.json +++ b/package-lock.json @@ -27,7 +27,6 @@ "eslint-plugin-import": "2.28.0", "eslint-plugin-jest": "27.2.3", "jest": "29.6.2", - "jest-circus": "29.6.2", "js-yaml": "4.1.0", "prettier": "2.8.8", "ts-jest": "29.1.1", diff --git a/package.json b/package.json index 1edb7d35..b64dd7bb 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,6 @@ "eslint-plugin-import": "2.28.0", "eslint-plugin-jest": "27.2.3", "jest": "29.6.2", - "jest-circus": "29.6.2", "js-yaml": "4.1.0", "prettier": "2.8.8", "ts-jest": "29.1.1",