Files
jasmine/spec/core/matchers/nothingSpec.js
2022-04-16 13:41:44 -07:00

9 lines
204 B
JavaScript

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