mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
09da373d1c
Co-authored-by: unlikelyzero <jchill2@gmail.com>
28 lines
948 B
JavaScript
28 lines
948 B
JavaScript
/* eslint-disable no-undef */
|
|
|
|
// This file extends the base functionality of the playwright test framework
|
|
const base = require('@playwright/test');
|
|
const { expect } = require('@playwright/test');
|
|
|
|
exports.test = base.test.extend({
|
|
page: async ({ baseURL, page }, use) => {
|
|
const messages = [];
|
|
page.on('console', msg => messages.push(`[${msg.type()}] ${msg.text()}`));
|
|
await use(page);
|
|
await expect.soft(messages.toString()).not.toContain('[error]');
|
|
},
|
|
browser: async ({ playwright, browser }, use, workerInfo) => {
|
|
// Use browserless if configured
|
|
if (workerInfo.project.name.match(/browserless/)) {
|
|
const vBrowser = await playwright.chromium.connectOverCDP({
|
|
endpointURL: 'ws://localhost:3003'
|
|
});
|
|
await use(vBrowser);
|
|
} else {
|
|
// Use Local Browser for testing.
|
|
await use(browser);
|
|
}
|
|
}
|
|
});
|
|
|