initial commit
This commit is contained in:
10
test/services/users.test.js
Normal file
10
test/services/users.test.js
Normal 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');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user