-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker.conf.json
More file actions
41 lines (41 loc) · 957 Bytes
/
stryker.conf.json
File metadata and controls
41 lines (41 loc) · 957 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
35
36
37
38
39
40
41
{
"$schema": "./node_modules/@stryker-mutator/core/schema/stryker-schema.json",
"mutate": [
"src/pages/About.js",
"src/App.js",
"src/pages/FavoritePokemons.js",
"src/pages/NotFound.js",
"src/pages/Pokedex.js",
"src/components/FavoriteInput.js",
"src/components/Pokemon.js",
"src/components/PokemonButtonsPanel.js",
"src/components/PokemonData.js",
"src/pages/PokemonDetails.js"
],
"mutator": {
"name": "javascript",
"excludedMutations": [
"ArithmeticOperator",
"ArrayDeclaration",
"ArrowFunction",
"BlockStatement",
"BooleanLiteral",
"ConditionalExpression",
"EqualityOperator",
"LogicalOperator",
"ObjectLiteral",
"UnaryOperator",
"UpdateOperator"
]
},
"testRunner": "jest",
"reporters": [
"progress",
"clear-text",
"html"
],
"coverageAnalysis": "off",
"jest": {
"projectType": "create-react-app"
}
}