mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-12 05:48:57 +00:00
10 lines
186 B
JavaScript
10 lines
186 B
JavaScript
var gitbook = require('../gitbook');
|
|
|
|
describe('satisfies', function() {
|
|
|
|
it('should return true for *', function() {
|
|
expect(gitbook.satisfies('*')).toBe(true);
|
|
});
|
|
|
|
});
|