Update azure config (#33999)

* Update azure config

* speed up checkout

* update config

* remove checkout path

* undo checkout change
This commit is contained in:
JJ Kasper 2022-02-04 13:42:22 -06:00 committed by GitHub
parent 103d3ab4fc
commit 1821bdea0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 6 deletions

View file

@ -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
@ -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

View file

@ -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)