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

11 lines
216 B
JavaScript

'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'))
})
})