UNPKG

wdio-allure-reporter

Version:

A WebdriverIO plugin. Report results in Allure format.

14 lines (12 loc) 318 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) }) }) })