Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ronvolutional
/
sk-node
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
44f5e52
sk-node
/
app
/
tests
/
test.ts
Ron Au
build(app): Add SvelteKit
6c12e37
over 2 years ago
raw
Copy download link
history
blame
Safe
201 Bytes
import
{ expect, test }
from
'@playwright/test'
;
test
(
'about page has expected h1'
,
async
({ page }) => {
await
page.
goto
(
'/about'
);
expect
(
await
page.
textContent
(
'h1'
)).
toBe
(
'About this app'
);
});