Skip to content

Commit c8dabdc

Browse files
slissonOleksandr Dzhychko
authored andcommitted
test(model-client): increase timeout for JS tests
1 parent 77ad6c5 commit c8dabdc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

model-client-js-test/replicated-model-test/src/ReplicatedModelJS.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ type ReplicatedModelJS = org.modelix.model.client2.ReplicatedModelJS
1010
let client: ClientJS | undefined;
1111
let replicatedModel: ReplicatedModelJS | undefined;
1212

13+
jest.setTimeout(60000)
14+
1315
beforeEach(async () => {
1416
const repositoryId = randomUUID()
1517
client = await connectClient(MODEL_SERVER_URL)
@@ -33,7 +35,7 @@ test("replicated model uses user set in client", async () => {
3335
const versionInformation = await replicatedModel!.getCurrentVersionInformation()
3436
const lastAuthor = versionInformation.author
3537
expect(lastAuthor).toBe(userId);
36-
});
38+
}, );
3739

3840
test("replicated model returns user set in client", async () => {
3941
const versionInformation = await replicatedModel!.getCurrentVersionInformation()

0 commit comments

Comments
 (0)