diff options
Diffstat (limited to 'test/services')
| -rw-r--r-- | test/services/meal/index.test.js | 10 | ||||
| -rw-r--r-- | test/services/user/index.test.js | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/test/services/meal/index.test.js b/test/services/meal/index.test.js new file mode 100644 index 0000000..92dd70f --- /dev/null +++ b/test/services/meal/index.test.js @@ -0,0 +1,10 @@ +'use strict'; + +const assert = require('assert'); +const app = require('../../../src/app'); + +describe('meal service', function() { + it('registered the meals service', () => { + assert.ok(app.service('meals')); + }); +}); 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')); + }); +}); |
