testsuite3
v2.2.0
Published
A package containing E2E testcases for a web assignment
Readme
UWIDCIT Test Suite 3
Version 2.0.0 A collection of E2E test cases
Installation
$ npm i --save testsuite3Then require the package in your mocha test file:
//inside test.js
const {runTests} = require('./index.js');
const config = require('./config.json');
runTests(config);
Running Tests
Ensure your site is running on http://localhost:8080/ then execute your test using mocha command
$ mocha test.js