Skip to content

Commit

Permalink
adjust config for post-release
Browse files Browse the repository at this point in the history
  • Loading branch information
tianfeng92 committed Jun 17, 2022
1 parent ddbe02c commit 46787fa
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
9 changes: 5 additions & 4 deletions tests/post-release/.sauce/config_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,21 @@ sauce:
build: Github Run $GITHUB_RUN_ID
cypress:
configFile: cypress.config.js
version: 10.1.0
version: 9.7.0
rootDir: ./

env:
foo: bar
suites:
- name: "Post Release Test (MacOS) 1/2"
browser: "chrome"
platformName: "macOS 11.00"
config:
specPattern: [ "**/*.spec.js" ]
specPattern: [ "cypress/**/*.*" ]
- name: "Post Release Test (MacOS) 2/2"
browser: "firefox"
platformName: "macOS 11.00"
config:
specPattern: [ "**/*.spec.js" ]
specPattern: [ "cypress/**/*.*" ]

notifications:
slack:
Expand Down
8 changes: 5 additions & 3 deletions tests/post-release/.sauce/config_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,22 @@ sauce:
cypress:
# CAUTION: This has to be an already deployed framework version in the cloud. Not necessarily the one you want to test.
# Then use --runner-version to specify the release you actually want to use.
version: 10.1.0
version: 9.7.0
configFile: "cypress.config.js"
rootDir: ./
env:
foo: bar
suites:
- name: "Post Release Test (Windows) 1/2"
browser: "chrome"
platformName: "Windows 10"
config:
specPattern: [ "**/*.spec.js" ]
specPattern: [ "cypress/**/*.cy.js" ]
- name: "Post Release Test (Windows) 2/2"
browser: "firefox"
platformName: "Windows 10"
config:
specPattern: [ "**/*.spec.js" ]
specPattern: [ "cypress/**/*.cy.js" ]

notifications:
slack:
Expand Down
1 change: 1 addition & 0 deletions tests/post-release/cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const { defineConfig } = require('cypress');

module.exports = defineConfig({
e2e: {
supportFile: false,
},
});

0 comments on commit 46787fa

Please sign in to comment.