We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2801ff commit adcc145Copy full SHA for adcc145
tests/run.spec.ts
@@ -71,7 +71,9 @@ test.group('Child process', () => {
71
args: [
72
'--loader=ts-node/esm',
73
'--enable-source-maps',
74
- '--disable-warning=ExperimentalWarning',
+ process.allowedNodeEnvironmentFlags.has('--disable-warning')
75
+ ? '--disable-warning=ExperimentalWarning'
76
+ : '--no-warnings',
77
'--throw-deprecation',
78
],
79
})
0 commit comments