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

@ -5519,7 +5519,7 @@ describe('BrowserWindow module', () => {
});
// Linux and arm64 platforms (WOA and macOS) do not return any capture sources
ifit(process.platform !== 'linux' && process.arch !== 'arm64')('should not display a visible background', async () => {
ifit(process.platform === 'darwin' && process.arch !== 'x64')('should not display a visible background', async () => {
const display = screen.getPrimaryDisplay();
const backgroundWindow = new BrowserWindow({
@ -5557,7 +5557,7 @@ describe('BrowserWindow module', () => {
expect(areColorsSimilar(rightHalfColor, HexColors.RED)).to.be.true();
});
ifit(process.platform !== 'linux' && process.arch !== 'arm64')('Allows setting a transparent window via CSS', async () => {
ifit(process.platform === 'darwin')('Allows setting a transparent window via CSS', async () => {
const display = screen.getPrimaryDisplay();
const backgroundWindow = new BrowserWindow({
@ -5597,7 +5597,8 @@ describe('BrowserWindow module', () => {
describe('"backgroundColor" option', () => {
afterEach(closeAllWindows);
ifit(process.platform !== 'linux' && process.arch !== 'arm64')('should display the set color', async () => {
// Linux/WOA doesn't return any capture sources.
ifit(process.platform === 'darwin')('should display the set color', async () => {
const display = screen.getPrimaryDisplay();
const w = new BrowserWindow({