mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2026-03-01 12:44:17 +00:00
24 lines
739 B
TypeScript
24 lines
739 B
TypeScript
/// <reference types="cypress" />
|
|
|
|
|
|
|
|
// Import commands.ts using ES2015 syntax:
|
|
// import './commands'
|
|
|
|
// Alternatively you can use CommonJS syntax:
|
|
// require('./commands')
|
|
|
|
// This file is processed and loaded automatically before your test files.
|
|
// This is a great place to put global configuration and behavior that modifies Cypress.
|
|
|
|
// You can change the location of this file or turn off
|
|
// automatically serving support files with the 'supportFile' configuration option.
|
|
|
|
// Global exception handler
|
|
Cypress.on('uncaught:exception', (err, _runnable) => {
|
|
// eslint-disable-next-line no-console
|
|
console.log('Uncaught exception:', err.message)
|
|
// returning false here prevents Cypress from failing the test
|
|
return false
|
|
})
|