blob: b45fe705c56b54c1a7762113e9dca676af6bcca2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
jest.autoMockOff();
var gitbook = require('../gitbook');
describe('satisfies', function() {
it('should return true for *', function() {
expect(gitbook.satisfies('*')).toBe(true);
});
});
|