What is rabbit-helpers?
...
Installing
Install rabbit-helpers for Mac, Linux, or Windows
npm install @dbouckaert/rabbit-helpers --save-dev
License
This project is licensed under the terms of the MIT license.
Getting started
Include the module into your test suite.
const {..,..} = require('@dbouckaert/rabbit-helpers')
Initiation
...
before(async function () {
// FIRST: setting variables for zephyrHelpers (without the project ID)
await init({
username: credentials.username,
password: credentials.password,
});
});
...