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 2a9e21e commit 826f56fCopy full SHA for 826f56f
checkVersion.js
@@ -5,6 +5,7 @@
5
// "unit:v20win32": "node --test --test-timeout=180000",
6
// "unit:other": "node --test --test-timeout=180000 test/*.js test/*.cjs",
7
8
+/* c8 ignore start */
9
import { platform, version, exit } from 'node:process'
10
11
const major = version.split('.')[0]
@@ -16,3 +17,4 @@ if ((major === 'v20') && platform === 'win32') {
16
17
// all the others 1
18
console.log(`Running ${major} on ${platform} returning exitCode ${exitCode}`)
19
exit(exitCode)
20
+/* c8 ignore stop */
0 commit comments