summaryrefslogtreecommitdiff
path: root/test/services/user/index.test.js
blob: a43dcaef23b9fe174bf5da471831eaaddc3ace03 (plain)
1
2
3
4
5
6
7
8
9
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'));
  });
});