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

11 lines
216 B
JavaScript
Raw Normal View History

2017-10-31 13:43:55 +00:00
'use strict'
2017-01-11 19:13:38 +00:00
2017-10-31 13:43:55 +00:00
const assert = require('assert')
const app = require('../../../src/app')
2017-01-11 19:13:38 +00:00
2017-10-31 13:43:55 +00:00
describe('user service', function () {
2017-01-11 19:13:38 +00:00
it('registered the users service', () => {
2017-10-31 13:43:55 +00:00
assert.ok(app.service('users'))
})
})