1
0
Fork 0
mirror of synced 2024-07-07 07:15:43 +12:00
This commit is contained in:
Adria Navarro 2023-11-30 11:20:43 +01:00
parent c86d949680
commit dcb6933eaa

View file

@ -8,7 +8,7 @@ tk.reset()
describe("redlockImpl", () => {
describe("doWithLock", () => {
const config = new DBTestConfiguration()
const lockTtl = 30
const lockTtl = 25
function runLockWithExecutionTime({
opts,
@ -28,7 +28,7 @@ describe("redlockImpl", () => {
}
it.each(Object.values(LockType))(
"should return the task value",
"should return the task value and release the lock",
async (lockType: LockType) => {
const expectedResult = generator.guid()
const mockTask = jest.fn().mockResolvedValue(expectedResult)
@ -64,7 +64,7 @@ describe("redlockImpl", () => {
const result = await runLockWithExecutionTime({
opts,
task: mockTask,
executionTimeMs: lockTtl * 2,
executionTimeMs: lockTtl * 3,
})
expect(result.executed).toBe(true)