X Tutup
Skip to content

Commit 8bd697b

Browse files
committed
docs(DEVELOPER): fix saucelabs gulp task name
Task is test.unit.js.sauce, not test.unit.js.saucelabs. Closes angular#6435
1 parent eda4c3e commit 8bd697b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

DEVELOPER.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,15 +200,15 @@ Then, in another terminal:
200200
export SAUCE_USERNAME='my_user'; export SAUCE_ACCESS_KEY='my_key';
201201
export BROWSER_STACK_USERNAME='my_user'; export BROWSER_STACK_ACCESS_KEY='my_key';
202202
```
203-
- Then run `gulp test.unit.js.(saucelabs|browserstack) --browsers=option1,option2,..,optionN`
203+
- Then run `gulp test.unit.js.(sauce|browserstack) --browsers=option1,option2,..,optionN`
204204
The options are any mix of browsers and aliases which are defined in the [browser-providers.conf.js](https://github.com/angular/angular/blob/master/browser-providers.conf.js) file.
205205
They are case insensitive, and the `SL_` or `BS_` prefix must not be added for browsers.
206206

207207
Some examples of commands:
208208
```
209-
gulp test.unit.js.saucelabs --browsers=Safari8,ie11 //run in Sauce Labs with Safari 8 and IE11
209+
gulp test.unit.js.sauce --browsers=Safari8,ie11 //run in Sauce Labs with Safari 8 and IE11
210210
gulp test.unit.js.browserstack --browsers=Safari,IE //run in Browser Stack with Safari 7, Safari 8, Safari 9, IE 9, IE 10 and IE 11
211-
gulp test.unit.js.saucelabs --browsers=IOS,safari8,android5.1 //run in Sauce Labs with iOS 7, iOS 8, iOs 9, Safari 8 and Android 5.1
211+
gulp test.unit.js.sauce --browsers=IOS,safari8,android5.1 //run in Sauce Labs with iOS 7, iOS 8, iOs 9, Safari 8 and Android 5.1
212212
```
213213

214214
### E2E tests

0 commit comments

Comments
 (0)
X Tutup