We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18067be commit b961eafCopy full SHA for b961eaf
test/index.spec.js
@@ -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