-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix build conflict with Next SWC compiler
- Loading branch information
1 parent
eed59d5
commit 5f32a47
Showing
3 changed files
with
9 additions
and
44 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,12 @@ | ||
module.exports = { | ||
collectCoverage: true, | ||
// on node 14.x coverage provider v8 offers good speed and more or less good report | ||
coverageProvider: "v8", | ||
collectCoverageFrom: [ | ||
"**/*.{js,jsx,ts,tsx}", | ||
"!**/*.d.ts", | ||
"!**/node_modules/**", | ||
"!<rootDir>/out/**", | ||
"!<rootDir>/.next/**", | ||
"!<rootDir>/*.config.js", | ||
"!<rootDir>/coverage/**", | ||
], | ||
moduleNameMapper: { | ||
// Handle CSS imports (with CSS modules) | ||
// https://jestjs.io/docs/webpack#mocking-css-modules | ||
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy", | ||
const nextJest = require("next/jest"); | ||
|
||
// Handle CSS imports (without CSS modules) | ||
"^.+\\.(css|sass|scss)$": "<rootDir>/__mocks__/styleMock.js", | ||
// Providing the path to your Next.js app which will enable loading next.config.js and .env files | ||
const createJestConfig = nextJest({ dir: "./" }); | ||
|
||
// Handle image imports | ||
// https://jestjs.io/docs/webpack#handling-static-assets | ||
"^.+\\.(png|jpg|jpeg|gif|webp|avif|ico|bmp|svg)$/i": `<rootDir>/__mocks__/fileMock.js`, | ||
|
||
// Handle module aliases | ||
"^@/(.*)$": "<rootDir>/$1", | ||
}, | ||
// Add more setup options before each test is run | ||
// Any custom config you want to pass to Jest | ||
const customJestConfig = { | ||
setupFilesAfterEnv: ["<rootDir>/jest.setup.js"], | ||
testPathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/.next/"], | ||
testEnvironment: "jsdom", | ||
transform: { | ||
// Use babel-jest to transpile tests with the next/babel preset | ||
// https://jestjs.io/docs/configuration#transform-objectstring-pathtotransformer--pathtotransformer-object | ||
"^.+\\.(js|jsx|ts|tsx)$": ["babel-jest", { presets: ["next/babel"] }], | ||
}, | ||
transformIgnorePatterns: [ | ||
"/node_modules/", | ||
"^.+\\.module\\.(css|sass|scss)$", | ||
], | ||
}; | ||
|
||
// createJestConfig is exported in this way to ensure that next/jest can load the Next.js configuration, which is async | ||
module.exports = createJestConfig(customJestConfig); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters