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

12 lines
351 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-07-29 21:50:42 +00:00
import assert from "assert";
import { app } from "../../../src/app";
2023-07-29 18:10:00 +00:00
2023-07-29 21:50:42 +00:00
describe("aliases service", () => {
it("registered the service", () => {
const service = app.service("aliases");
2023-07-29 18:10:00 +00:00
2023-07-29 21:50:42 +00:00
assert.ok(service, "Registered the service");
});
});