diff --git a/test/int/intTestSupport.ts b/test/int/intTestSupport.ts index da49e02..8aeefef 100644 --- a/test/int/intTestSupport.ts +++ b/test/int/intTestSupport.ts @@ -60,15 +60,3 @@ export function setConditionalBreakpoint(client: DebugClient, location: { path: source: { path: location.path } }); } - -/** - * Set a timer. (Note: this method should be used SPARINGLY, if at all, as it will tend to make tests non-deterministic) - * @param ms Milliseconds to wait - */ -export function timer(ms: number): Promise { - return new Promise((a, r) => { - setTimeout(() => { - a(); - }, ms); - }); -}