diff --git a/jasmine/jasmine-tests.ts b/jasmine/jasmine-tests.ts index ef0572303c..8e3365eaf8 100644 --- a/jasmine/jasmine-tests.ts +++ b/jasmine/jasmine-tests.ts @@ -1,6 +1,6 @@ /// -// tests based on http://jasmine.github.io/2.0/introduction.html +// tests based on http://jasmine.github.io/2.2/introduction.html describe("A suite", function () { it("contains spec with an expectation", function () { @@ -248,7 +248,8 @@ describe("Pending specs", function () { it("can be declared by calling 'pending' in the spec body", function () { expect(true).toBe(false); - pending(); + pending(); // without reason + pending('this is why it is pending'); }); });