aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/services/users.test.js
blob: cc555e5c4db93be55d0a0985415feb53ce76cad4 (plain) (blame)
1
2
3
4
5
6
7
8
9
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');
  });
});