From 4b9fdb35a1eec08d8de4cdf2ffd7b471854a6e3f Mon Sep 17 00:00:00 2001 From: Dmitri Trofimov Date: Fri, 4 Jan 2019 11:01:40 +0200 Subject: [PATCH] Test attempt #1 --- types/async/test/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/types/async/test/index.ts b/types/async/test/index.ts index 574a5ed8b9..a9272fa67a 100644 --- a/types/async/test/index.ts +++ b/types/async/test/index.ts @@ -355,6 +355,10 @@ q2.unshift(['task3', 'task4', 'task5'], function (error) { console.log('Finished tasks'); }); +let q2Length = q2.length(); +q2.push('testRemovalTask'); +q2.remove(x => x.data === 'testTaskRemoval'); +console.log('how can I fail the test?'); var aq = async.queue(function (level: number, callback: (error?: Error, newLevel?: number) => void) { console.log('hello ' + level);