Mocha Allure2 Reporter
This project implements recent Allure 2 TS interface for Mocha framework.
Installation
npm i mocha-allure2-reporter mocha --save-dev
or via yarn:
yarn add mocha-allure2-reporter mocha --dev
Note that it's recommended to add the following dependencies as well for better user experience:
- typescript - mocha-typescript - source-map-support allure2-js-commons comes as an implicit dependency.
Allure types configuration
Add the following into your tsconfig.json to access exported Allure types."typeRoots": [
"./node_modules/allure2-js-commons/dist/declarations/**/"
]
Usage
Either add mocha-allure2-reporter into mocha.opts:--ui mocha-typescript
--require source-map-support/register
--reporter mocha-allure2-reporter
Or pass the same value via commandline / scripts:
mocha -R mocha-allure2-reporter
Now you can access a global allure object from within your project:
```typescript const allure: AllureInterface = global.allure; ```
A full API is listed in AllureInterface.ts.