You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/06-configuration.md
+6-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,11 @@ To ignore files, prefix the pattern with an `!` (exclamation mark).
44
44
"testOptions": {
45
45
"babelrc": false
46
46
}
47
-
}
47
+
},
48
+
"nodeArguments": [
49
+
"--trace-deprecation",
50
+
"--napi-modules"
51
+
]
48
52
}
49
53
}
50
54
```
@@ -70,6 +74,7 @@ Arguments passed to the CLI will always take precedence over the CLI options con
70
74
-`babel`: test file specific Babel options. See our [Babel recipe](./recipes/babel.md#configuring-babel) for more details
71
75
-`babel.extensions`: extensions of test files that will be precompiled using AVA's Babel presets. Setting this overrides the default `"js"` value, so make sure to include that extension in the list
72
76
-`timeout`: Timeouts in AVA behave differently than in other test frameworks. AVA resets a timer after each test, forcing tests to quit if no new test results were received within the specified timeout. This can be used to handle stalled tests. See our [timeout documentation](./07-test-timeouts.md) for more options.
77
+
-`nodeArguments`: Configure options to be passed to child node processes when running tests
73
78
74
79
Note that providing files on the CLI overrides the `files` option.
0 commit comments