Skip to content

Commit

Permalink
Test: add bdd interface test case, coverage increased
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerhut authored and boneskull committed Dec 9, 2017
1 parent 37b63de commit 743c830
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/interfaces/bdd.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,11 @@ context('test suite', function () {
expect(this.number).to.equal(5);
});
});

describe('pending suite', function () {
describe.skip('this is pending suite', function () {
it('should not run', function () {
expect(1 + 1).to.equal(3);
});
});
});

0 comments on commit 743c830

Please sign in to comment.