quoad
Version:
Serenity/JS: Next generation acceptance testing library for modern web applications.
16 lines (12 loc) • 483 B
text/typescript
import { Log, notes } from '@serenity-js/core';
import { describe, it } from '@serenity-js/playwright-test';
describe('Playwright Test configuration', () => {
describe('A screenplay scenario', () => {
it(`receives an actor from a custom cast`, async ({ actorCalled }) => {
await actorCalled('Alice').attemptsTo(
Log.the(notes().get('contextOptions')),
Log.the(notes().get('options')),
);
});
});
});