From c912f6bdef3369256c7d59f4c4b8b0a1c718b69a Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Fri, 23 Aug 2013 14:23:59 +0200 Subject: [PATCH] dummy asserts --- test/spec/async.spec.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/spec/async.spec.js b/test/spec/async.spec.js index 8c84ea8..dc09ceb 100644 --- a/test/spec/async.spec.js +++ b/test/spec/async.spec.js @@ -17,6 +17,7 @@ describe("Asynchronous check", function () { setTimeout(function () { timer = time; }, time * 1000); + expect(time >= 0).toBeTruthy(); } runs(function () { @@ -48,6 +49,7 @@ describe("Asynchronous check", function () { setTimeout(function () { timer = time; }, time * 1000); + expect(time >= 0).toBeTruthy(); } runs(function () { -- 1.7.10.4