Skip to content

Commit 2bba2de

Browse files
committed
test(guess-the-word): add initial test for Pages
1 parent b84d48d commit 2bba2de

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { describe, expect, it } from "vitest";
2+
3+
const createPages = () => {
4+
return { TestPages: { totalPages: 0 } };
5+
};
6+
7+
describe("Pages", () => {
8+
it.todo("sets initial `.totalPages` correctlty", () => {
9+
const { TestPages } = createPages();
10+
11+
expect(TestPages.totalPages).toBe(0);
12+
});
13+
});

0 commit comments

Comments
 (0)