You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
393 B
21 lines
393 B
const { normalize } = require('path')
|
|
|
|
module.exports = {
|
|
require: jest.fn(),
|
|
match: jest.fn(),
|
|
app: {
|
|
getPath: name => normalize(`/tmp/zap-test/${name}`),
|
|
getAppPath: () => normalize('/tmp/zap-test'),
|
|
getLocale: jest.fn()
|
|
},
|
|
remote: {
|
|
app: {
|
|
getLocale: jest.fn()
|
|
}
|
|
},
|
|
dialog: jest.fn(),
|
|
BrowserWindow: jest.fn(),
|
|
ipcMain: {
|
|
on: jest.fn()
|
|
}
|
|
}
|
|
|