aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/services/users.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/services/users.test.js')
-rw-r--r--test/services/users.test.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/services/users.test.js b/test/services/users.test.js
new file mode 100644
index 0000000..cc555e5
--- /dev/null
+++ b/test/services/users.test.js
@@ -0,0 +1,10 @@
+const assert = require('assert');
+const app = require('../../src/app');
+
+describe('\'users\' service', () => {
+ it('registered the service', () => {
+ const service = app.service('users');
+
+ assert.ok(service, 'Registered the service');
+ });
+});