wildflock/test/services/aliases/aliases.test.ts

12 lines
363 B
TypeScript
Raw Normal View History

2023-07-29 18:10:00 +00:00
// For more information about this file see https://dove.feathersjs.com/guides/cli/service.test.html
2023-08-06 06:21:17 +00:00
import assert from 'assert';
import { app } from '../../../src/app';
2023-07-29 18:10:00 +00:00
2023-08-06 06:21:17 +00:00
describe('aliases service', () => {
it('registered the service', () => {
const service = app.service('aliases');
2023-07-29 18:10:00 +00:00
2023-08-06 06:21:17 +00:00
assert.ok(service, 'Registered the service');
});
2023-07-29 21:50:42 +00:00
});