sharadJay / nightwatch-allure-adapter

Allure reporter adapter for nightwatch framework
3 stars 11 forks source link

test not exited after giving 'reporter: allure.write' in global.js, any solution ? #12

Closed govind413 closed 4 years ago

govind413 commented 4 years ago

able to solve by passing below in globals

var allure = require("nightwatch-allure-adapter"); module.exports = { reporter: (results,done)=>{ allure.write(results,done); } };