Skip to content

Commit

Permalink
fix:#521 - test exceptiom handling
Browse files Browse the repository at this point in the history
  • Loading branch information
marclupanc committed Nov 15, 2024
1 parent 680a1a3 commit 800fffe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/cypress/e2e/search.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@
describe('Search page', () => {
beforeEach(() => {
cy.viewport(1280, 800)
cy.wait(3000)
})

it('Testing search of prompt', () => {
cy.viewport(1280, 800)

cy.on('fail', (err, runnable) => {
console.log(err.message)
return false
})
cy.visit('/search')

cy.get('[data-test="search-input"]').type(' ')
Expand Down

0 comments on commit 800fffe

Please sign in to comment.