Nuxt/examples/with-feathers/test/services/user/index.test.js

11 lines
221 B
JavaScript
Raw Normal View History

2017-01-11 19:13:38 +00:00
'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'));
});
});