Skip to content

Commit

Permalink
Update azure config (vercel#33999)
Browse files Browse the repository at this point in the history
* Update azure config

* speed up checkout

* update config

* remove checkout path

* undo checkout change
  • Loading branch information
ijjk authored and natew committed Feb 16, 2022
1 parent 7e8b5da commit 1ff53cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
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)

0 comments on commit 1ff53cd

Please sign in to comment.