Skip to content

Commit

Permalink
Remove enviroments from workflows (#217)
Browse files Browse the repository at this point in the history
* release and CI environments removed from workflows

* upd brower name

* timeout increased
  • Loading branch information
aleks-pro authored Feb 20, 2024
1 parent e7d6655 commit f3cf2bb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ jobs:
publish:
if: ${{ !github.event.release.draft }}
runs-on: ubuntu-latest
environment: release
steps:
- uses: DevExpress/testcafe-build-system/actions/publish-with-publish-please@main
env:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
test:
runs-on: ubuntu-latest
needs: [build]
environment: CI
steps:
- uses: DevExpress/testcafe-build-system/actions/prepare@main

Expand Down
5 changes: 2 additions & 3 deletions test/mocha/browser-names-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('Browser names', function () {
'ie@11.0:Windows 8.1',
'edge@15.0:Windows 10',
'iPhone SE 2020@13',
'iPhone XR@12',
'iPhone XR@15',
'Google Pixel 7@13.0'
];

Expand All @@ -42,8 +42,7 @@ describe('Browser names', function () {
'edge@15.0:Windows 10',
'iPhone 7@10',
'iPhone SE 2020@13',
'iPhone XR@12',
'Google Pixel 7@13.0'
'iPhone XR@15',
];

return browserStackProvider
Expand Down
2 changes: 1 addition & 1 deletion test/mocha/change-resolution-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const HIGH_RESOLUTION = '1920x1080';


describe('Resolution Changing', function () {
this.timeout(2 * 60 * 1000);
this.timeout(3 * 60 * 1000);

let testcafe = null;

Expand Down
2 changes: 1 addition & 1 deletion test/mocha/testcafe-integration-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var createTestCafe = require('testcafe');


describe('TestCafe integration', function () {
this.timeout(2 * 60 * 1000);
this.timeout(3 * 60 * 1000);

var testcafe = null;

Expand Down

0 comments on commit f3cf2bb

Please sign in to comment.