Skip to content

Commit f3cf2bb

Browse files
authored
Remove enviroments from workflows (#217)
* release and CI environments removed from workflows * upd brower name * timeout increased
1 parent e7d6655 commit f3cf2bb

File tree

5 files changed

+4
-7
lines changed

5 files changed

+4
-7
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ jobs:
88
publish:
99
if: ${{ !github.event.release.draft }}
1010
runs-on: ubuntu-latest
11-
environment: release
1211
steps:
1312
- uses: DevExpress/testcafe-build-system/actions/publish-with-publish-please@main
1413
env:

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
test:
2020
runs-on: ubuntu-latest
2121
needs: [build]
22-
environment: CI
2322
steps:
2423
- uses: DevExpress/testcafe-build-system/actions/prepare@main
2524

test/mocha/browser-names-test.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('Browser names', function () {
2828
'[email protected]:Windows 8.1',
2929
'[email protected]:Windows 10',
3030
'iPhone SE 2020@13',
31-
'iPhone XR@12',
31+
'iPhone XR@15',
3232
'Google Pixel [email protected]'
3333
];
3434

@@ -42,8 +42,7 @@ describe('Browser names', function () {
4242
'[email protected]:Windows 10',
4343
'iPhone 7@10',
4444
'iPhone SE 2020@13',
45-
'iPhone XR@12',
46-
'Google Pixel [email protected]'
45+
'iPhone XR@15',
4746
];
4847

4948
return browserStackProvider

test/mocha/change-resolution-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const HIGH_RESOLUTION = '1920x1080';
88

99

1010
describe('Resolution Changing', function () {
11-
this.timeout(2 * 60 * 1000);
11+
this.timeout(3 * 60 * 1000);
1212

1313
let testcafe = null;
1414

test/mocha/testcafe-integration-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var createTestCafe = require('testcafe');
33

44

55
describe('TestCafe integration', function () {
6-
this.timeout(2 * 60 * 1000);
6+
this.timeout(3 * 60 * 1000);
77

88
var testcafe = null;
99

0 commit comments

Comments
 (0)