UNPKG

quoad

Version:

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

16 lines (11 loc) 329 B
import { afterEach, describe, it } from '@serenity-js/playwright-test'; describe('Playwright Test reporting', () => { describe('A scenario', () => { afterEach(() => { // no-op, passing }); it('passes', async ({ actorCalled }) => { // no-op, passing }); }); });