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.
14 lines
291 B
14 lines
291 B
6 years ago
|
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')
|
||
|
},
|
||
|
remote: jest.fn(),
|
||
|
dialog: jest.fn(),
|
||
|
BrowserWindow: jest.fn()
|
||
|
}
|