fix(repo): e2e test script should handle SIGINT

This commit is contained in:
Victor Savkin 2020-06-15 14:07:10 -04:00 committed by Victor Savkin
parent b00a259c1a
commit a34af96093

View File

@ -161,6 +161,8 @@ function cleanUp(code) {
process.exit(code);
}
process.on('SIGINT', () => cleanUp(1));
runTest()
.then(() => {
process.exit(0);