mirror of
https://github.com/andrei0x309/clear-wallet.git
synced 2024-11-03 23:21:24 +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')
|
||
|
})
|
||
|
})
|