12 lines
349 B
TypeScript
12 lines
349 B
TypeScript
|
// For more information about this file see https://dove.feathersjs.com/guides/cli/service.test.html
|
||
|
import assert from 'assert'
|
||
|
import { app } from '../../../src/app'
|
||
|
|
||
|
describe('auth-oidc service', () => {
|
||
|
it('registered the service', () => {
|
||
|
const service = app.service('auth-oidc')
|
||
|
|
||
|
assert.ok(service, 'Registered the service')
|
||
|
})
|
||
|
})
|