26 lines
687 B
JavaScript
26 lines
687 B
JavaScript
// Verifies that objects contained in custom snapshot are accessible in Electron.
|
|
|
|
const { app } = require('electron')
|
|
|
|
app.on('ready', () => {
|
|
let returnCode = 0
|
|
try {
|
|
const testValue = f() // eslint-disable-line no-undef
|
|
if (testValue === 86) {
|
|
console.log('ok test snapshot successfully loaded.')
|
|
} else {
|
|
console.log('not ok test snapshot could not be successfully loaded.')
|
|
returnCode = 1
|
|
}
|
|
} catch (ex) {
|
|
console.log('Error running custom snapshot', ex)
|
|
returnCode = 1
|
|
}
|
|
setImmediate(function () {
|
|
app.exit(returnCode)
|
|
})
|
|
})
|
|
|
|
process.on('exit', function (code) {
|
|
console.log('test snapshot exited with code: ' + code)
|
|
})
|