blob: f679ba63128f156d84040ef76f8c06ea5322941d [file]
const assert = require('node:assert')
const lib = require('./lib.js')
assert.strictEqual(lib.covered(), 'covered')
// Exit non-zero on purpose; the js_test's expected_exit_code matches, so the test
// passes and coverage must still be produced for it. See #2932.
process.exit(42)