ci: fix WOA failing tests (#25018)

* 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
This commit is contained in:
John Kleinschmidt 2020-08-24 12:58:55 -04:00 committed by GitHub
parent beaf60de0a
commit d8fe7af703
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 28 additions and 42 deletions

View file

@ -2,5 +2,7 @@ const { app, session } = require('electron');
app.on('ready', () => {
session.fromPartition('in-memory');
process.exit(0);
setImmediate(() => {
process.exit(0);
});
});