An open API service indexing awesome lists of open source software.

https://github.com/lambdatest/lambdatest-circleci-orb

NightWatch CircleCI ORB Sample
https://github.com/lambdatest/lambdatest-circleci-orb

Last synced: 7 months ago
JSON representation

NightWatch CircleCI ORB Sample

Awesome Lists containing this project

README

        

## NightWatch CircleCI ORB Sample
##### [NightWatch Documentation](http://nightwatchjs.org/)
![LAMBDATEST Logo](http://labs.lambdatest.com/images/fills-copy.svg)
----
This is sample repository for CircleCI ORBS.
----
### Environment Setup

1. Global Dependencies
* Install [Node.js](https://nodejs.org/en/)
* Or Install Node.js with [Homebrew](http://brew.sh/)
```
$ brew install node
```
2. lambdatest Credentials
* In the terminal export your lambdatest Credentials as environmental variables:
```
$ export LT_USERNAME=
$ export LT_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](https://automation.lambdatest.com)

## 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](https://www.lambdatest.com/) 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](https://www.lambdatest.com/selenium-automation) 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

##### [SeleniumHQ Documentation](http://www.seleniumhq.org/docs/)