-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker-config.runtime.json
More file actions
40 lines (40 loc) · 1.01 KB
/
stryker-config.runtime.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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
{
"$schema": "https://raw.githubusercontent.com/stryker-mutator/stryker-net/master/src/Stryker.Core/Stryker.Core/stryker-config.schema.json",
"stryker-config": {
"project": "Agibuild.Fulora.Runtime.csproj",
"mutate": [
"**/RuntimeBridgeService.cs",
"**/WebViewMessageBus.cs",
"**/SharedStateStore.cs",
"**/WebAuthBroker.cs",
"**/SpaHostingService.cs",
"**/SpaAssetHotUpdateService.cs",
"**/WebViewCoreSpaHostingRuntime.cs",
"**/WebViewBootstrapExtensions.cs",
"**/WebViewAdapterFactory.cs",
"**/BridgeDebugServer.cs",
"**/JsonFileConfigProvider.cs",
"**/RemoteConfigProvider.cs",
"**/ServiceWorkerRegistrar.cs",
"!**/obj/**",
"!**/bin/**"
],
"mutation-level": "Standard",
"thresholds": {
"high": 90,
"low": 80,
"break": 0
},
"reporters": [
"html",
"json",
"dots",
"cleartext"
],
"ignore-mutations": [
"string",
"linq"
],
"concurrency": 4
}
}