1
0
Fork 0
mirror of https://github.com/owncast/owncast.git synced 2024-12-28 20:18:37 +03:00
owncast/test/automated/browser/tests/video.js
Gabe Kangas cc6b257470
Automated browser testing ()
* Move automated api tests to api directory

* First pass at automated browser testing
2021-09-17 14:04:09 -07:00

11 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;