Blame view

imports/api/documents/documents.tests.js 344 Bytes
f0c912bf1   tmcdeveloper   add method tests ...
1
2
  /* eslint-env mocha */
  /* eslint-disable func-names, prefer-arrow-callback */
bcaec4b6b   tmcdeveloper   a few maintenance...
3
  import { assert } from 'meteor/practicalmeteor:chai';
c42d4eeac   themeteorchef   handful of changes
4
  import Documents from './documents.js';
f0c912bf1   tmcdeveloper   add method tests ...
5

f0c912bf1   tmcdeveloper   add method tests ...
6
7
8
9
10
  describe('Documents collection', function () {
    it('registers the collection with Mongo properly', function () {
      assert.equal(typeof Documents, 'object');
    });
  });