wildflock/test/services/auth-oidc/auth-oidc.test.ts

12 lines
355 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("auth-oidc service", () => {
it("registered the service", () => {
const service = app.service("auth-oidc");
2023-07-29 18:10:00 +00:00
2023-07-29 21:50:42 +00:00
assert.ok(service, "Registered the service");
});
});