dragonroll/client/tests/test.spec.js

5 lines
128 B
JavaScript
Raw Permalink Normal View History

2024-10-09 08:02:13 +00:00
describe("HelloWorld", () => {
it("renders properly", () => {
2024-10-09 13:43:58 +00:00
expect("Hello Jest").toContain("Hello Jest")
2024-10-09 08:02:13 +00:00
})
})