mirror of
https://github.com/supabase/supabase.git
synced 2026-06-19 22:37:17 +08:00
## I have read the [CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md) file. YES --------- Co-authored-by: Copilot Autofix powered by AI <[email protected]>
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
// https://docs.cypress.io/api/introduction/api.html
|
|
|
|
describe('My First Test', () => {
|
|
it('Visits the app root url', () => {
|
|
cy.visit('/')
|
|
cy.contains('#container', 'Ready to create an app?')
|
|
})
|
|
})
|