a little linting

This commit is contained in:
mahula 2025-10-04 11:12:02 +02:00
parent 1ecd8fbc2f
commit 0317c634d6
2 changed files with 1 additions and 13 deletions

View File

@ -1,17 +1,6 @@
/// <reference types="cypress" />
describe('Utopia Map Login Form Elements', () => {
// TODO: set this data different
const _testData = {
validUser: {
email: Cypress.env('validEmail'),
password: Cypress.env('validPassword')
},
invalidUser: {
email: Cypress.env('invalidEmail'),
password: Cypress.env('invalidPassword')
}
}
beforeEach(() => {
cy.clearCookies()

View File

@ -15,8 +15,7 @@
// automatically serving support files with the 'supportFile' configuration option.
// Global exception handler
Cypress.on('uncaught:exception', (err, _runnable) => {
// eslint-disable-next-line no-console
Cypress.on('uncaught:exception', (err) => {
console.log('Uncaught exception:', err.message)
// returning false here prevents Cypress from failing the test
return false