-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathjest.config.js
43 lines (43 loc) · 1.27 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
37
38
39
40
41
42
43
module.exports = {
verbose: true,
transform: {
"^.+\\.[t|j]sx?$": "babel-jest",
"^.+\\.(js|jsx|mjs|xml)$": "./jest-transformer.js",
},
transformIgnorePatterns: [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
"^.+\\.module\\.(css|sass|scss)$",
],
reporters: [
"default",
[
"jest-junit",
{
outputDirectory: "output/junit",
includeShortConsoleOutput: true,
suiteName: "shopify app tests",
},
],
],
globals: {
NODE_ENV: "test",
MOCK_BACKEND_URL: "https://mock_backend_url.domain.com",
MOCK_GRAPHQL_URL: "https://test-shop/admin/api/2019-10/graphql.json",
},
coverageReporters: ["text", "cobertura"],
setupFiles: ["<rootDir>/__tests__/setup.js", "core-js"],
testEnvironment: "jsdom",
coverageDirectory: "output/coverage/jest",
testPathIgnorePatterns: [
"<rootDir>/__tests__/setup.js",
"<rootDir>/__tests__/helpers",
"<rootDir>/ci-cd/",
],
moduleNameMapper: {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$":
"<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|sass|scss)$": "<rootDir>/__mocks__/styleMock.js",
"^.+\\.(css|less|scss)$": "identity-obj-proxy",
"\\.(xml)$": "<rootDir>/__mocks__/styleMock.js",
},
};