mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
9 lines
215 B
JavaScript
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");
|