puppeteer/third_party/phantomjs/test/basics/exit0.js

9 lines
212 B
JavaScript
Raw Normal View History

2017-05-11 07:06:41 +00:00
//! no-harness
//! expect-exit: 0
//! expect-stdout: "we are alive"
var sys = require('system');
sys.stdout.write("we are alive\n");
phantom.exit();
sys.stdout.write("ERROR control passed beyond phantom.exit");