-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathas-test.config.json
More file actions
65 lines (65 loc) · 1.31 KB
/
Copy pathas-test.config.json
File metadata and controls
65 lines (65 loc) · 1.31 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"$schema": "./node_modules/as-test/as-test.config.schema.json",
"input": ["./assembly/__tests__/*.spec.ts"],
"outDir": "./.as-test/build",
"logs": "./.as-test/logs",
"coverageDir": "./.as-test/coverage",
"snapshotDir": "./.as-test/snapshots",
"config": "none",
"features": ["try-as"],
"cache": {
"type": "reachable",
"ttl": "1d"
},
"coverage": {
"enabled": true,
"mode": "project",
"include": ["assembly/**/*.ts"],
"exclude": [
"assembly/__tests__/**/*.ts",
"assembly/__fuzz__/**/*.fuzz.ts",
"assembly/__bench__/**/*.bench.ts"
]
},
"buildOptions": {
"args": ["--debug"],
"target": "wasi"
},
"fuzz": {
"input": ["./assembly/__fuzz__/*.fuzz.ts"],
"runs": 500,
"seed": 1337,
"target": "bindings"
},
"runOptions": {
"runtime": {
"cmd": "wasmtime <file>"
}
},
"modes": {
"naive": {
"env": {
"JSON_MODE": "NAIVE"
},
"buildOptions": {
"args": ["--transform ./"]
}
},
"swar": {
"env": {
"JSON_MODE": "SWAR"
},
"buildOptions": {
"args": ["--transform ./"]
}
},
"simd": {
"env": {
"JSON_MODE": "SIMD"
},
"buildOptions": {
"args": ["--debug", "--enable simd", "--transform ./"]
}
}
}
}