Files
appium/test/helpers/quit-gracefully.js
T
2014-03-11 21:47:16 +08:00

6 lines
72 B
JavaScript

"use strict";
process.on('SIGINT', function () {
process.exit();
});