mirror of
https://github.com/owncast/owncast.git
synced 2024-12-29 04:28:32 +03:00
12 lines
319 B
JavaScript
12 lines
319 B
JavaScript
|
async function videoTest(browser, page) {
|
||
|
it('should have the video container element', async () => {
|
||
|
await page.waitForSelector('#video-container');
|
||
|
});
|
||
|
|
||
|
it('should have the stream info status bar', async () => {
|
||
|
await page.waitForSelector('#stream-info');
|
||
|
});
|
||
|
}
|
||
|
|
||
|
module.exports.videoTest = videoTest;
|