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.
21 lines
462 B
JavaScript
21 lines
462 B
JavaScript
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
import './commands'
|
|
|
|
before(() => {
|
|
if (Cypress.browser.name === 'firefox') {
|
|
cy.visit('/')
|
|
cy.get('.ant-modal-body').within(() => {
|
|
cy.get('.ant-modal-confirm-title')
|
|
.should('contain', 'Unsupported platform detected')
|
|
cy.get('.ant-modal-confirm-btns')
|
|
.contains('OK')
|
|
.click()
|
|
})
|
|
}
|
|
})
|