We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 003b693 commit 9692a1aCopy full SHA for 9692a1a
1 file changed
apps/e2e/tests/js/auth-like.test.ts
@@ -17,11 +17,11 @@ const signIn = async (clientApp: any) => {
17
// version tests
18
// ============================================
19
20
-it("clientApp.version should return a valid semver version string", async ({ expect }) => {
+it("clientApp.version should return a valid version string", async ({ expect }) => {
21
const { clientApp } = await createApp({});
22
expect(clientApp.version).toBeDefined();
23
expect(typeof clientApp.version).toBe("string");
24
- expect(clientApp.version).toMatch(/^\d+\.\d+\.\d+/);
+ expect(clientApp.version).toMatch(/^js @stackframe\/js@\d+\.\d+\.\d+/);
25
});
26
27
it("serverApp.version should return the same version as clientApp", async ({ expect }) => {
0 commit comments