playwright-fluent
Version:
Fluent API around playwright
16 lines (15 loc) • 543 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const playwright_fluent_1 = require("../../playwright-fluent");
describe('Playwright Fluent - close', () => {
// eslint-disable-next-line @typescript-eslint/no-empty-function
beforeEach(() => { });
test('should do nothing when browser has not been launched', async () => {
// Given
const p = new playwright_fluent_1.PlaywrightFluent();
// When
await p.close();
// Then
// no error should occur
});
});
;