Skip to content

Commit 46141af

Browse files
committed
test: increase timeout for test cases to 20000ms
1 parent 2c93e62 commit 46141af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/tools/watermarkJsPlus.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('watermarkJsPlusDocTool', () => {
1010
})) as { content: unknown[] }
1111

1212
expect(res.content.length).toBeGreaterThan(0)
13-
})
13+
}, 20000)
1414

1515
test('returns a "not found" response for an unrecognized input', async () => {
1616
const res = (await global.client.callTool({
@@ -20,5 +20,5 @@ describe('watermarkJsPlusDocTool', () => {
2020
},
2121
})) as { content: unknown[] }
2222
expect(res.content.length).toEqual(0)
23-
})
23+
}, 20000)
2424
})

0 commit comments

Comments
 (0)