Skip to content

rishabh-arya95/Lambdatest-circleci-orb

 
 

Repository files navigation

NightWatch CircleCI ORB Sample

LAMBDATEST Logo

This is sample repository for CircleCI ORBS.

Environment Setup

  1. Global Dependencies
    $ brew install node
    
  2. lambdatest Credentials
    • In the terminal export your lambdatest Credentials as environmental variables:
    $ export LT_USERNAME=<your lambdatest username>
    $ export LT_ACCESS_KEY=<your lambdatest access_key>
    
  3. Project Dependencies
    • Install Node modules
    $ npm install
    

Running Tests

  • Tests in Parallel:

    ** Linux/Mac

    $ ./node_modules/.bin/nightwatch -e chrome,edge,firefox tests
    

    ** Windows

    $ node_modules\.bin\nightwatch -e chrome,edge,firefox tests
    

You will see the test result in the lambdatest Dashboard

Circle CI ORB Config.


version: 2.1

orbs:
    lambda-dev: lambdatest/lambda-tunnel@volatile

workflows:      
    basic_workflow:
        jobs:
          - lambdatest/with_tunnel:
              name: "Chrome test"
              tunnel_name: "chrome"
              steps:
                - run: 
                    command: |
                      npm install
                      node_modules/.bin/nightwatch -e chrome
          - lambdatest/with_tunnel:
              name: "Firefox test"
              tunnel_name: "firefox"
              steps:
                - run: 
                    command: |
                      npm install
                      node_modules/.bin/nightwatch -e firefox


About LambdaTest

LambdaTest is a cloud based selenium grid infrastructure that can help you run automated cross browser compatibility tests on 2000+ different browser and operating system environments. LambdaTest supports all programming languages and frameworks that are supported with Selenium, and have easy integrations with all popular CI/CD platforms. It's a perfect solution to bring your selenium automation testing to cloud based infrastructure that not only helps you increase your test coverage over multiple desktop and mobile browsers, but also allows you to cut down your test execution time by running tests on parallel.

Resources

About

NightWatch CircleCI ORB Sample

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%