insomnia/app/__mocks__/electron.js

15 lines
169 B
JavaScript
Raw Normal View History

2016-11-10 17:33:28 +00:00
export default {
remote: {
app: {
getPath (name) {
return `/tmp/insomnia-tests/${name}`
}
}
2016-11-23 23:42:10 +00:00
},
ipcRenderer: {
on () {
}
}
2016-11-10 17:33:28 +00:00
}