-
Notifications
You must be signed in to change notification settings - Fork 4
/
jest.config.js
36 lines (28 loc) · 1.02 KB
/
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
35
36
// For a detailed explanation regarding each configuration property, visit:
// https://jestjs.io/docs/en/configuration.html
module.exports = {
// Automatically clear mock calls and instances between every test
clearMocks: true,
// The directory where Jest should output its coverage files
coverageDirectory: 'coverage',
// An array of regexp pattern strings used to skip coverage collection
coveragePathIgnorePatterns: ['/node_modules/', '/dist/', '/__fixtures__/', '/__mocks__/'],
// An object that configures minimum threshold enforcement for coverage results
coverageThreshold: {
global: {
branches: 95,
functions: 95,
lines: 95,
statements: 95,
},
},
setupFilesAfterEnv: ['@testing-library/jest-dom'],
// The test environment that will be used for testing
testEnvironment: 'jest-environment-jsdom-sixteen',
// No transforms - just plain js
transform: {
'^.+\\.svelte$': 'svelte-jester',
'^.+\\.[jt]sx?$': 'babel-jest',
},
moduleFileExtensions: ['js', 'svelte'],
}