1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-10-15 23:18:52 +02:00
cheatsheets/saucelabs.md
Rico Sta. Cruz 511de900ba
Formatting updates (#2133)
- Update some sheets which have very long sections
- Remove `layout: 2017/sheet` (everything has the same layout now)
- Remove outdated sheets
2024-04-03 18:30:24 +11:00

542 B

title
title
Saucelabs

Getting started

Sign up for opensauce: {: .-setup}

Install zuul:

npm i -g zuul

Configure zuul:

# ~/.zuulrc
sauce_username: me
sauce_key: abc12348-e3e2-...

Add .zuul.yml to your project:

# .zuul.yml
ui: mocha-bdd
browsers:
  - name: chrome
    version: latest
  - name: ie
    version: 6..latest
  - name: firefox
    version: latest

Try to run tests:

zuul test/test.js
zuul --local test/test.js