We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 956ef66 commit 53a9f2bCopy full SHA for 53a9f2b
jest.config.js
@@ -1,14 +1,15 @@
1
-const nextJest = require('next/jest')
+const nextJest = require("next/jest");
2
3
const createJestConfig = nextJest({
4
- dir: './',
5
-})
+ dir: "./",
+});
6
7
/** @type {import('jest'.Config)} */
8
const config = {
9
- setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
10
- testEnvironment: 'jest-environment-jsdom',
11
- preset: 'ts-jest',
12
-}
+ setupFilesAfterEnv: ["<rootDir>/jest.setup.js"],
+ testEnvironment: "jest-environment-jsdom",
+ testPathIgnorePatterns: ["playwright"],
+ preset: "ts-jest",
13
+};
14
-module.exports = createJestConfig(config)
15
+module.exports = createJestConfig(config);
0 commit comments