Merge pull request #13852 from backstage/rugvip/app-backend-port

app-backend: add implementation for new backend system
This commit is contained in:
Patrik Oldsberg
2022-09-27 11:29:21 +02:00
committed by GitHub
20 changed files with 299 additions and 11 deletions
@@ -31,7 +31,7 @@ describe('createExtensionPoint', () => {
});
describe('createBackendPlugin', () => {
it('should create an BackendPlugin', () => {
it('should create a BackendPlugin', () => {
const plugin = createBackendPlugin({
id: 'x',
register(_reg, _options: { a: string }) {},
@@ -103,7 +103,7 @@ describe('createBackendPlugin', () => {
});
describe('createBackendModule', () => {
it('should create an BackendModule', () => {
it('should create a BackendModule', () => {
const mod = createBackendModule({
pluginId: 'x',
moduleId: 'y',