UNPKG

wdio-workflo-allure-reporter

Version:

This is a customized version of wdio-workflo-allure-reporter for use with workflo framework.

14 lines (12 loc) 308 B
'use strict' const expect = require('chai').expect describe('A failing Suite', () => { it('with failing test', () => { return browser .url('/index.html') .waitForExist('#clickable') .then(() => { expect(true).to.be.equal(false) }) }) })