maybe it will return fail now correctly

This commit is contained in:
QuiteAFancyEmerald 2024-07-09 18:29:36 -07:00
parent 270703f66d
commit 1cb8476968

View file

@ -133,8 +133,10 @@ async function testCommonJSOnPage() {
if (rammerheadPassed && ultravioletPassed) {
console.log('Both tests passed.');
process.exit(0); // Exit with success
} else {
console.error('Tests failed.');
process.exit(1); // Exit with failure
}
} catch (error) {
console.error('Error in testCommonJSOnPage:', error.message);