Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/namuan/apickli_functional_tests

A sample project for running BDD tests with [apickli](https://github.com/apickli/apickli) framework.
https://github.com/namuan/apickli_functional_tests

apickli bdd-tests rest-api-test test-automation

Last synced: 28 days ago
JSON representation

A sample project for running BDD tests with [apickli](https://github.com/apickli/apickli) framework.

Awesome Lists containing this project

README

        

### Apickli Functional Tests Template

A sample project for running BDD tests with [apickli](https://github.com/apickli/apickli) framework.

#### Running the tests

Make sure you have nodejs and npm installed.

Run the following command from the root directory

```
## Install dependencies
npm i

## There are couple of helper commands to run specific tags
## See package.json -> scripts for the full syntax
## npm run

npm run all # should run all tests with @all tag
npm run travel # should run all tests with @Travel tag
```

The report file in json format is generated in the report folder.

To view the report in html format

```
npm run report
```

which should generate and launch the browser with the HTML report.