d8fe7af703
* tests: fix failing WOA tests tests: fix startDrag for WOA tests: fix early-in-memory-session-create crash test on WOA ci: cleanup user app data directories on WOA * tests: disable nativeImage.createFromBuffer tests on WOA * disable failing nativeImage.createFromPath on WOA * disable another nativeImage test for WOA
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
const { app, session } = require('electron');
|
|
|
|
app.on('ready', () => {
|
|
session.fromPartition('in-memory');
|
|
setImmediate(() => {
|
|
process.exit(0);
|
|
});
|
|
});
|