aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/services/users.test.js
diff options
context:
space:
mode:
authorMarvin Borner2018-10-25 22:22:55 +0200
committerMarvin Borner2018-10-25 22:22:55 +0200
commit1309e462efc4a7bbdf538e9d209133c1b3c138a6 (patch)
tree74be20f30280b52e891f7f3507c9d8569fad6b61 /test/services/users.test.js
parent185e0f26c6680c64cb5f2befdedd0cc3bbf09df5 (diff)
Added authentication and post endpoint
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');
+ });
+});