wildflock/test/services/aliases/aliases.test.ts
Sergo c60d7d0c30
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
change prettier config
2023-08-06 09:09:48 +03:00

12 lines
363 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('aliases service', () => {
it('registered the service', () => {
const service = app.service('aliases');
assert.ok(service, 'Registered the service');
});
});