Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/namuan/apickli_functional_tests
- Owner: namuan
- Created: 2019-10-11T07:24:16.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T00:41:42.000Z (almost 2 years ago)
- Last Synced: 2024-10-07T19:35:38.208Z (about 1 month ago)
- Topics: apickli, bdd-tests, rest-api-test, test-automation
- Language: JavaScript
- Size: 142 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
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 runnpm 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.