DEV Community

Lam
Lam

Posted on

Saucelabs Cheat Sheet

Getting started

Sign up for opensauce:

Install zuul:

npm i -g zuul
Enter fullscreen mode Exit fullscreen mode

Configure zuul:

# ~/.zuulrc
sauce_username: me
sauce_key: abc12348-e3e2-...
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

Try to run tests:

zuul test/test.js
zuul --local test/test.js
Enter fullscreen mode Exit fullscreen mode

Reference:

Top comments (0)

Qodo Takeover

Introducing Qodo Gen 1.0: Transform Your Workflow with Agentic AI

Rather than just generating snippets, our agents understand your entire project context, can make decisions, use tools, and carry out tasks autonomously.

Read full post

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay