diff options
author | Marvin Borner | 2018-10-25 22:22:55 +0200 |
---|---|---|
committer | Marvin Borner | 2018-10-25 22:22:55 +0200 |
commit | 1309e462efc4a7bbdf538e9d209133c1b3c138a6 (patch) | |
tree | 74be20f30280b52e891f7f3507c9d8569fad6b61 /test/services/users.test.js | |
parent | 185e0f26c6680c64cb5f2befdedd0cc3bbf09df5 (diff) |
Added authentication and post endpoint
Diffstat (limited to 'test/services/users.test.js')
-rw-r--r-- | test/services/users.test.js | 10 |
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'); + }); +}); |