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