initial commit

This commit is contained in:
JJ Kasper
2018-05-17 14:31:05 -05:00
commit 2c90d2e7dd
79 changed files with 10684 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
const assert = require('assert');
const app = require('../../src/app');
const getUrl = require('../../util/getUrl');
describe('\'docs\' service', () => {
it('registered the service', () => {
const service = app.service(getUrl('docs'));
assert.ok(service, 'Registered the service');
});
});

View File

@@ -0,0 +1,10 @@
const assert = require('assert');
const app = require('../../src/app');
const getUrl = require('../../util/getUrl');
describe('\'users\' service', () => {
it('registered the service', () => {
const service = app.service(getUrl('users'));
assert.ok(service, 'Registered the service');
});
});