Files
nuchat/ui/tests/e2e/example.ts
Fergus Molloy 77ea0144cf
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
remove separate ui service, serve ui with backend
2025-07-18 01:54:26 +01:00

12 lines
233 B
TypeScript

describe('My First Test', function () {
before((browser) => {
browser.init()
})
it('visits the app root url', function () {
browser.assert.textContains('h1', 'You did it!')
})
after((browser) => browser.end())
})