bigbluebutton-Github/bigbluebutton-tests/playwright/sharednotes/sharednotes.spec.js

10 lines
331 B
JavaScript
Raw Normal View History

2021-11-30 02:39:52 +08:00
const { test } = require('@playwright/test');
const SharedNotes = require('./sharednotes');
test.describe.parallel('Shared Notes', () => {
test('Open Shared notes', async ({ browser, context, page }) => {
const test = new SharedNotes(browser, page);
await test.init(true, true);
await test.openSharedNotes();
})
})