Skip to content

Commit 9692a1a

Browse files
committed
Fix tests
1 parent 003b693 commit 9692a1a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/e2e/tests/js/auth-like.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ const signIn = async (clientApp: any) => {
1717
// version tests
1818
// ============================================
1919

20-
it("clientApp.version should return a valid semver version string", async ({ expect }) => {
20+
it("clientApp.version should return a valid version string", async ({ expect }) => {
2121
const { clientApp } = await createApp({});
2222
expect(clientApp.version).toBeDefined();
2323
expect(typeof clientApp.version).toBe("string");
24-
expect(clientApp.version).toMatch(/^\d+\.\d+\.\d+/);
24+
expect(clientApp.version).toMatch(/^js @stackframe\/js@\d+\.\d+\.\d+/);
2525
});
2626

2727
it("serverApp.version should return the same version as clientApp", async ({ expect }) => {

0 commit comments

Comments
 (0)