Skip to content

Commit 9bdf3ae

Browse files
authored
Merge pull request #1 from yashLadha/Fix-82-performance-improvements
Fix 82 performance improvements
2 parents 12487a3 + dbc1c81 commit 9bdf3ae

File tree

11 files changed

+8797
-50
lines changed

11 files changed

+8797
-50
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ node_modules
33
.screenshots
44
.idea
55
*.iml
6+

DEVELOPMENT.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
To use the development build in your tests:
2+
3+
---
4+
5+
Step 1: Clone the repo
6+
7+
Step 2: Go into the directory
8+
```bash
9+
cd testcafe-browser-provider-browserstack
10+
```
11+
Step 3: Install the dependencies
12+
```bash
13+
npm install (use lts version to avoid breaking changes)
14+
```
15+
Step 4: Gulp build the module
16+
```bash
17+
./node_modules/.bin/gulp build
18+
```
19+
Step 5: Link the package globally, for consumption by testcafe
20+
```bash
21+
npm link
22+
```
23+
24+
---
25+

Gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ function testTestcafe (browsers) {
9393
function testTestcafeRest () {
9494
process.env.BROWSERSTACK_USE_AUTOMATE = '0';
9595

96-
return testTestcafe('browserstack:chrome:windows 10,browserstack:Safari@12');
96+
return testTestcafe('browserstack:chrome:windows 10,browserstack:Safari@12.1');
9797
}
9898

9999
function testTestcafeAutomate () {
100100
process.env.BROWSERSTACK_USE_AUTOMATE = '1';
101101

102-
return testTestcafe('browserstack:chrome:windows 10,browserstack:Google [email protected],browserstack:Safari@12');
102+
return testTestcafe('browserstack:chrome:windows 10,browserstack:Google [email protected],browserstack:Safari@12.1');
103103
}
104104

105105
exports.clean = clean;

0 commit comments

Comments
 (0)