puppeteer/third_party/phantomjs/test/basics/exit23.js
2017-05-11 00:06:41 -07:00

9 lines
215 B
JavaScript

//! no-harness
//! expect-exit: 23
//! expect-stdout: "we are alive"
var sys = require('system');
sys.stdout.write("we are alive\n");
phantom.exit(23);
sys.stdout.write("ERROR control passed beyond phantom.exit");