All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 10s
12 lines
233 B
TypeScript
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())
|
|
})
|