1
0
mirror of https://github.com/pavlobu/deskreen.git synced 2025-05-18 08:20:10 -07:00
2021-01-17 23:45:59 +02:00

12 lines
229 B
TypeScript

/* eslint-disable import/prefer-default-export */
export const remote = {
getGlobal: (name: string) => {
if (name === 'appPath') {
return __dirname;
}
return '';
},
};
export const ipcRenderer = jest.fn();