UNPKG

quoad

Version:

Serenity/JS: Next generation acceptance testing library for modern web applications.

12 lines (8 loc) 291 B
import { describe, it } from '@serenity-js/playwright-test'; describe('Playwright Test reporting', () => { describe('A scenario', () => { it('fails when an error is thrown', () => { throw new Error(`Something happened`); // fail with throw }); }); });