* add first blitz integration test for useQuery * link to couple nextjs test files instead of duplicate * CI name tweaks (meta)
14 lines
420 B
JavaScript
14 lines
420 B
JavaScript
module.exports = {
|
|
testMatch: ["**/*.test.js", "**/*.test.ts"],
|
|
verbose: true,
|
|
rootDir: "test",
|
|
modulePaths: ["<rootDir>/lib"],
|
|
moduleNameMapper: {
|
|
"^lib/(.+)$": "<rootDir>/lib/$1",
|
|
},
|
|
globalSetup: "<rootDir>/jest-global-setup.js",
|
|
globalTeardown: "<rootDir>/jest-global-teardown.js",
|
|
setupFilesAfterEnv: ["<rootDir>/jest-setup-after-env.js"],
|
|
testEnvironment: "<rootDir>/jest-environment.js",
|
|
}
|