Skip to content

Commit

Permalink
fix: message
Browse files Browse the repository at this point in the history
  • Loading branch information
0xOneTony committed Nov 27, 2023
1 parent ebea405 commit 1d43489
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e-tests-with-nodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ require('dotenv').config(); // Initialize dotenv to load environment variables
// Exit with an error code if tests failed
if (!testPassed) {
console.error('Tests failed. Setting exit code to 1.');
proccess.exit(1);
process.exit(1);
}

// Exit with a success code if tests passed
proccess.exit(0);
process.exit(0);
});
})();

Expand Down

0 comments on commit 1d43489

Please sign in to comment.