Files
jasmine/spec/core/matchers/nothingSpec.js
2017-08-09 16:44:19 +04:00

9 lines
202 B
JavaScript

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