electron/spec/fixtures/snapshot-items-available/main.js

27 lines
705 B
JavaScript
Raw Normal View History

// Verifies that objects contained in custom snapshot are accessible in Electron.
2020-03-20 20:28:31 +00:00
const { app } = require('electron');
app.whenReady().then(() => {
2020-03-20 20:28:31 +00:00
let returnCode = 0;
try {
2020-03-20 20:28:31 +00:00
const testValue = f(); // eslint-disable-line no-undef
if (testValue === 86) {
2020-03-20 20:28:31 +00:00
console.log('ok test snapshot successfully loaded.');
} else {
2020-03-20 20:28:31 +00:00
console.log('not ok test snapshot could not be successfully loaded.');
returnCode = 1;
}
} catch (ex) {
2020-03-20 20:28:31 +00:00
console.log('Error running custom snapshot', ex);
returnCode = 1;
}
setImmediate(function () {
2020-03-20 20:28:31 +00:00
app.exit(returnCode);
});
});
process.on('exit', function (code) {
2020-03-20 20:28:31 +00:00
console.log('test snapshot exited with code: ' + code);
});