UNPKG

quoad

Version:

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

12 lines (8 loc) 271 B
import { describe, expect, it } from '@serenity-js/playwright-test'; describe('Playwright Test reporting', () => { describe('A scenario', () => { it('fails when the assertion fails', () => { expect(true).toEqual(false); }); }); });