1
0
mirror of synced 2025-12-19 18:11:23 -05:00
Files
blitz/jest.config.js
Brandon Bayer fa8fd64921 add first blitz integration test for useQuery (#2193)
* add first blitz integration test for useQuery

* link to couple nextjs test files instead of duplicate

* CI name tweaks (meta)
2021-04-08 18:23:19 -04:00

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",
}