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