Skip to content

Commit

Permalink
fix: pin Node to 16
Browse files Browse the repository at this point in the history
  • Loading branch information
VerteDinde committed Dec 6, 2022
1 parent 3bcde2b commit 3f61275
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion script/setup-win-for-dev.bat
Expand Up @@ -56,7 +56,8 @@ REM Install Windows SDK
choco install windows-sdk-10-version-2104-all

REM Install nodejs python git and yarn needed dependencies
choco install -y nodejs-lts python2 git yarn
choco install -y nodejs-lts --version=16.15.0
choco install -y python2 git yarn
choco install python --version 3.7.9
call C:\ProgramData\chocolatey\bin\RefreshEnv.cmd
SET PATH=C:\Python27\;C:\Python27\Scripts;C:\Python39\;C:\Python39\Scripts;%PATH%
Expand Down
2 changes: 1 addition & 1 deletion spec-main/api-browser-window-spec.ts
Expand Up @@ -5585,7 +5585,7 @@ describe('BrowserWindow module', () => {
});

// Linux and arm64 platforms (WOA and macOS) do not return any capture sources
ifit(process.platform === 'darwin' && process.arch !== 'x64')('should not display a visible background', async () => {
ifit(process.platform === 'darwin' && process.arch !== 'arm64')('should not display a visible background', async () => {
const display = screen.getPrimaryDisplay();

const backgroundWindow = new BrowserWindow({
Expand Down

0 comments on commit 3f61275

Please sign in to comment.