test: exit properly when node-spec-runner validates specs (#36091)

test: exit properly when node spec runner validates specs
This commit is contained in:
Shelley Vohr 2022-10-21 02:13:59 -07:00 committed by GitHub
parent 0158077bec
commit 3e730ab016
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,6 +67,8 @@ async function main () {
console.error(`Found ${missing.length} missing disabled specs: \n${missing.join('\n')}`);
process.exit(1);
}
process.exit(0);
}
const options = args.default ? defaultOptions : getCustomOptions();