一大坨垃圾正在前进

This commit is contained in:
des
2025-12-29 23:05:32 +08:00
parent 960d7e6fcc
commit 580697fc82
40 changed files with 12860 additions and 20 deletions

11
html/tests/e2e/example.js Normal file
View File

@@ -0,0 +1,11 @@
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())
})