forked from clio-lang/clio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.config.js
More file actions
34 lines (34 loc) · 850 Bytes
/
jest.config.js
File metadata and controls
34 lines (34 loc) · 850 Bytes
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
export default {
collectCoverageFrom: [
"**/*.js",
"!**/*.clio.js",
"!coverage/**/*.js",
"!jest.config.js",
"!index.js",
"!browser.js",
"!common.js",
"!gulpfile.js",
"!highlight.js",
"!jest-puppeteer.config.js",
"!host/**/*",
"!tests/**/*",
"!docs/**/*",
],
testPathIgnorePatterns: [
"<rootDir>/jest.config.js",
"<rootDir>/packages/rpc/test",
],
coveragePathIgnorePatterns: [
"<rootDir>/jest.config.js",
"<rootDir>/packages/rpc",
"<rootDir>/packages/cli",
"<rootDir>/packages/run",
"<rootDir>/packages/website",
"<rootDir>/packages/playground",
"<rootDir>/packages/highlight",
"<rootDir>/packages/language-server",
],
moduleFileExtensions: ["js", "json", "jsx", "ts", "tsx", "node", "toml"],
testEnvironment: "node",
testTimeout: 60000,
};