Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update azure config #33999

Merged
merged 7 commits into from Feb 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 2 additions & 5 deletions azure-pipelines.yml
Expand Up @@ -69,11 +69,9 @@ stages:
- stage: Test
dependsOn: Build
jobs:
- job: test_ie11
- job: test_integration
pool:
vmImage: 'windows-2019'
variables:
BROWSER_NAME: internet explorer
steps:
- checkout: none
- task: NodeTool@0
Expand All @@ -89,8 +87,7 @@ stages:
displayName: Cache Build

- script: |
npm i -g selenium-standalone@6.18.0
displayName: 'Install selenium node'
npx playwright install chromium

- script: |
node run-tests.js -c 1 test/integration/production/test/index.test.js test/integration/css-client-nav/test/index.test.js test/integration/rewrites-has-condition/test/index.test.js
Expand Down
2 changes: 1 addition & 1 deletion test/jest-setup-after-env.ts
@@ -1,3 +1,3 @@
// A default max-timeout of 90 seconds is allowed
// per test we should aim to bring this down though
jest.setTimeout(90 * 1000)
jest.setTimeout((process.platform === 'win32' ? 180 : 90) * 1000)