-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathas-pect.config.js
30 lines (29 loc) · 1.04 KB
/
as-pect.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
// Docs https://tenner-joshua.gitbook.io/as-pect/cli-configuration
module.exports = {
include: ["assembly/__tests__/**/*.spec.ts"],
add: ["assembly/__tests__/**/*.include.ts"],
flags: {
"--runtime": ["stub"]
},
disclude: [/node_modules/],
imports: {},
performance: {
/** Enable performance statistics gathering for every test. */
enabled: false,
/** Set the maximum number of samples to run for every test. */
maxSamples: 10000,
/** Set the maximum test run time in milliseconds for every test. */
maxTestRunTime: 2000,
/** Report the median time in the default reporter for every test. */
reportMedian: true,
/** Report the average time in milliseconds for every test. */
reportAverage: true,
/** Report the standard deviation for every test. */
reportStandardDeviation: false,
/** Report the maximum run time in milliseconds for every test. */
reportMax: false,
/** Report the minimum run time in milliseconds for every test. */
reportMin: false,
},
outputBinary: false
};