UNPKG

wdio-jasmine-framework

Version:

A WebdriverIO plugin. Adapter for Jasmine testing framework.

10 lines (8 loc) 242 B
describe('sample test', () => { beforeAll('will cause all tests to fail', () => { throw new Error('causes all tests to fail') }) it('fails due to exception in beforeAll', () => { expect(true).toBe(true) }) })