documents.tests.js
372 Bytes
/* eslint-env mocha */
/* eslint-disable func-names, prefer-arrow-callback */
import { chai } from 'meteor/practicalmeteor:chai';
import { Documents } from './documents.js';
const { assert } = chai;
describe('Documents collection', function () {
it('registers the collection with Mongo properly', function () {
assert.equal(typeof Documents, 'object');
});
});