bigbluebutton-Github/bigbluebutton-tests/playwright/api/api.spec.js
Brent Baccala 0e57e6049e test suite: add API tests for getMeetings/getMeetingInfo
This also creates a new package requirement (xml2js) for the
playwright test suite and adds a new helper function to make an API
call and obtain its parsed XML response as a JavaScript object
2022-11-07 17:00:54 -05:00

12 lines
294 B
JavaScript

const { test } = require('@playwright/test');
const { API } = require('./api.js');
test.describe.parallel('API', () => {
test('getMeetings / getMeetingInfo', async ({ browser, context, page }) => {
const api = new API(browser, context, page);
await api.getMeetingInfo();
});
});