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