mirror of
https://github.com/andrei0x309/clear-wallet.git
synced 2024-11-11 11:31:15 +00:00
9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
// https://docs.cypress.io/api/introduction/api.html
|
|
|
|
describe('My First Test', () => {
|
|
it('Visits the app root url', () => {
|
|
cy.visit('/folder/Inbox')
|
|
cy.contains('#container', 'Inbox')
|
|
})
|
|
})
|