You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
907 B
JavaScript

// Copyright (C) 2020-2022 Intel Corporation
//
// SPDX-License-Identifier: MIT
require('./commands');
require('./commands_projects');
require('./commands_review_pipeline');
require('./commands_canvas3d');
require('./commands_filters_feature');
require('./commands_models');
require('./commands_opencv');
require('./commands_organizations');
require('@cypress/code-coverage/support');
before(() => {
if (Cypress.browser.family !== 'chromium') {
cy.visit('/');
}
cy.closeModalUnsupportedPlatform();
});
// Chrome: ResizeObserver loop limit exceeded
// Firefox: ResizeObserver loop completed with undelivered notifications
const resizeObserverLoopErr = 'ResizeObserver loop';
Cypress.on('uncaught:exception', (err) => {
// the exception is generated by cypress in some browsers
if (err.message.includes(resizeObserverLoopErr)) {
return false;
}
return true;
});