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

9 lines
192 B
JavaScript
Raw Normal View History

2018-03-16 16:12:06 +00:00
import assert from 'assert'
import app from '../../../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'))
})
})