UNPKG

quoad

Version:

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

13 lines (9 loc) 303 B
import { describe, it, test } from '@serenity-js/playwright-test'; describe('Playwright Test reporting', () => { describe('A scenario', () => { it('is marked as failing, and fails', () => { test.fail(); throw new Error('Expected failure'); }); }); });