mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 13:00:19 +00:00
Added pending tests
This commit is contained in:
@@ -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');
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user