add remove method for aliases

This commit is contained in:
2023-07-30 00:50:42 +03:00
parent fb29813345
commit 70d95be227
23 changed files with 446 additions and 376 deletions

View File

@@ -1,11 +1,11 @@
// 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'
import assert from "assert";
import { app } from "../../../src/app";
describe('auth-oidc service', () => {
it('registered the service', () => {
const service = app.service('auth-oidc')
describe("auth-oidc service", () => {
it("registered the service", () => {
const service = app.service("auth-oidc");
assert.ok(service, 'Registered the service')
})
})
assert.ok(service, "Registered the service");
});
});

View File

@@ -1,11 +1,11 @@
// 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'
import assert from "assert";
import { app } from "../../../../src/app";
describe('auth-oidc/callback service', () => {
it('registered the service', () => {
const service = app.service('auth-oidc/callback')
describe("auth-oidc/callback service", () => {
it("registered the service", () => {
const service = app.service("auth-oidc/callback");
assert.ok(service, 'Registered the service')
})
})
assert.ok(service, "Registered the service");
});
});