From a762c9f3c6b19251d2d7211cfba3c1c06bf07bf5 Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Thu, 8 May 2014 22:45:30 +0200 Subject: [PATCH] Removing old TODOs and comments from jasmine.js --- external/jasmine/jasmine.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/external/jasmine/jasmine.js b/external/jasmine/jasmine.js index 8bba9262d..adf9859b4 100644 --- a/external/jasmine/jasmine.js +++ b/external/jasmine/jasmine.js @@ -458,8 +458,6 @@ if (isCommonJS) exports.spyOn = spyOn; /** * Creates a Jasmine spec that will be added to the current suite. * - * // TODO: pending tests - * * @example * it('should be true', function() { * expect(true).toEqual(true); @@ -563,11 +561,6 @@ if (isCommonJS) exports.afterEach = afterEach; * are accessible by calls to beforeEach, it, and afterEach. Describe blocks can be nested, allowing for specialization * of setup in some tests. * - * @example - * // TODO: a simple suite - * - * // TODO: a simple suite with a nested describe block - * * @param {String} description A string, usually the class under test. * @param {Function} specDefinitions function that defines several specs. */