9 lines
204 B
JavaScript
9 lines
204 B
JavaScript
describe('nothing', function() {
|
|
it('should pass', function() {
|
|
const matcher = privateUnderTest.matchers.nothing(),
|
|
result = matcher.compare();
|
|
|
|
expect(result.pass).toBe(true);
|
|
});
|
|
});
|