users.test.ts 341 B

1234567891011
  1. // For more information about this file see https://dove.feathersjs.com/guides/cli/service.test.html
  2. import assert from 'assert'
  3. import { app } from '../../../src/app'
  4. describe('users service', () => {
  5. it('registered the service', () => {
  6. const service = app.service('users')
  7. assert.ok(service, 'Registered the service')
  8. })
  9. })