ci: bake appveyor images automatically, run sync on depshash change (#35396)

* chore: update yml formatting for parser

* ci: bake appveyor images automatically, run sync on depshash change

* chore: clean up .yml files

* chore: bump to e-110.0.5415.0
This commit is contained in:
Keeley Hammond 2022-11-21 07:24:26 -08:00 committed by GitHub
parent 3a94634ae5
commit b71cccb0d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 529 additions and 288 deletions

View file

@ -63,7 +63,7 @@ describe('BrowserView module', () => {
});
// Linux and arm64 platforms (WOA and macOS) do not return any capture sources
ifit(process.platform !== 'linux' && process.arch !== 'arm64')('sets the background color to transparent if none is set', async () => {
ifit(process.platform === 'darwin' && process.arch === 'x64')('sets the background color to transparent if none is set', async () => {
const display = screen.getPrimaryDisplay();
const WINDOW_BACKGROUND_COLOR = '#55ccbb';
@ -87,7 +87,7 @@ describe('BrowserView module', () => {
});
// Linux and arm64 platforms (WOA and macOS) do not return any capture sources
ifit(process.platform !== 'linux' && process.arch !== 'arm64')('successfully applies the background color', async () => {
ifit(process.platform === 'darwin' && process.arch === 'x64')('successfully applies the background color', async () => {
const WINDOW_BACKGROUND_COLOR = '#55ccbb';
const VIEW_BACKGROUND_COLOR = '#ff00ff';
const display = screen.getPrimaryDisplay();