forked from remix-run/remix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.js
34 lines (34 loc) · 975 Bytes
/
jest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/** @type {import('@jest/types').Config.InitialOptions} */
module.exports = {
modulePathIgnorePatterns: [
"<rootDir>/.tmp",
"<rootDir>/examples",
"<rootDir>/templates",
],
projects: [
"packages/create-remix",
"packages/remix",
"packages/remix-architect",
"packages/remix-cloudflare",
"packages/remix-cloudflare-pages",
"packages/remix-cloudflare-workers",
"packages/remix-css-bundle",
"packages/remix-deno",
"packages/remix-dev",
"packages/remix-eslint-config",
"packages/remix-express",
"packages/remix-netlify",
"packages/remix-node",
"packages/remix-react",
"packages/remix-serve",
"packages/remix-server-runtime",
"packages/remix-testing",
"packages/remix-vercel",
],
watchPlugins: [
require.resolve("jest-watch-select-projects"),
require.resolve("jest-watch-typeahead/filename"),
require.resolve("jest-watch-typeahead/testname"),
],
reporters: ["default"],
};