All files / mgmt-lambda/utils delay.ts

40% Statements 2/5
100% Branches 0/0
0% Functions 0/3
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 22x  
export const delay = (ms: number) => new Promise<void>((resolve) => setTimeout(() => resolve(), ms))