playwright/tests/electron/electron-app.js
2022-12-20 12:50:53 -08:00

12 lines
370 B
JavaScript

const { app, protocol } = require('electron');
const path = require('path');
app.on('window-all-closed', e => e.preventDefault());
app.whenReady().then(() => {
protocol.registerFileProtocol('vscode-file', (request, callback) => {
const url = request.url.substring('vscode-file'.length + 3);
callback({ path: path.join(__dirname, 'assets', url) });
});
});