4529e3cc88
* fix failing cypress test for 404 page
11 lines
368 B
TypeScript
11 lines
368 B
TypeScript
describe('Redirect', () => {
|
|
it('should redirect to /vote/create-proposal when visiting /create-proposal', () => {
|
|
cy.visit('/create-proposal')
|
|
cy.url().should('match', /\/vote\/create-proposal/)
|
|
})
|
|
it('should redirect to /not-found when visiting nonexist url', () => {
|
|
cy.visit('/none-exist-url')
|
|
cy.url().should('match', /\/not-found/)
|
|
})
|
|
})
|