Skip to content

Commit b961eaf

Browse files
Add index test
1 parent 18067be commit b961eaf

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

test/index.spec.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const models = require('../src/index');
2+
3+
describe('index', function() {
4+
it('should be an object with the types.', function(done) {
5+
expect(models).to.be.an('object').with.all.keys(
6+
'DateType',
7+
'CursorType',
8+
);
9+
done();
10+
});
11+
});

0 commit comments

Comments
 (0)