fix: ignore Device related JS errors (ie, camera recorder)
This commit is contained in:
parent
601673d095
commit
48df524f85
@ -18,6 +18,10 @@ test.describe('IT Tool', () => {
|
||||
const errors: Array<Error> = [];
|
||||
|
||||
page.on('pageerror', (error) => {
|
||||
// ignore errors related to physical devices (ie camera recorder)
|
||||
if (error.message.match(/Requested device not found/)) {
|
||||
return;
|
||||
}
|
||||
errors.push(error);
|
||||
});
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user