Added pending tests

This commit is contained in:
a3chic9
2015-04-14 10:39:16 -04:00
parent 19a23c4d38
commit efffa6ec97
+3 -2
View File
@@ -1,6 +1,6 @@
/// <reference path="jasmine.d.ts" />
// 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');
});
});