Turn off display after testing

pull/1/head
Caleb James DeLisle 7 years ago
parent 81de5d861c
commit f81cfb178b

@ -77,5 +77,9 @@ run('npm', ['install'], () => {
}).nThen((waitFor) => {
run('npm', ['run', 'fresh'], ()=>{});
run('node', ['./TestSelenium.js'], waitFor());
}).nThen((waitFor) => {
if (process.platform === 'darwin') {
run('bash', ['-c', 'pmset displaysleepnow'], waitFor());
}
}).nThen(killAll);
});

Loading…
Cancel
Save