quoad
Version:
Serenity/JS: Next generation acceptance testing library for modern web applications.
13 lines (9 loc) • 351 B
text/typescript
import { describe, it } from '@serenity-js/playwright-test';
describe('Playwright Test reporting', () => {
describe('A scenario', () => {
// eslint-disable-next-line mocha/no-skipped-tests
it.skip('is marked as skipped', () => {
throw new Error('Playwright should not run this code at all');
});
});
});