Merge branch 'github-1221' of https://github.com/ksvitkovsky/jasmine into ksvitkovsky-github-1221

- Merges #1412 from @ksvitkovsky
- Fixes #1221
This commit is contained in:
Gregg Van Hove
2017-08-09 17:20:54 -07:00
3 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
describe('nothing', function() {
it('should pass', function() {
var matcher = jasmineUnderTest.matchers.nothing(),
result = matcher.compare();
expect(result.pass).toBe(true);
});
});