diff --git a/.changeset/shiny-symbols-grow.md b/.changeset/shiny-symbols-grow.md index ea283a2f97..18dd3b8b1f 100644 --- a/.changeset/shiny-symbols-grow.md +++ b/.changeset/shiny-symbols-grow.md @@ -4,4 +4,4 @@ '@backstage/plugin-scaffolder': patch --- -Fixing a bug where the name for `templatingExtensions` was incorrect +Fixing a bug where the name for `templatingExtensions` was incorrectly set to `templateExtensions` diff --git a/plugins/scaffolder-backend/src/service/router.test.ts b/plugins/scaffolder-backend/src/service/router.test.ts index 8afc5230da..d26cc955b3 100644 --- a/plugins/scaffolder-backend/src/service/router.test.ts +++ b/plugins/scaffolder-backend/src/service/router.test.ts @@ -360,10 +360,10 @@ describe.each([ }); }); - describe('GET /v2/temlating-extensions', () => { + describe('GET /v2/templating-extensions', () => { it('lists template filters and globals', async () => { const response = await request(app) - .get('/v2/temlating-extensions') + .get('/v2/templating-extensions') .send(); expect(response.status).toEqual(200); const integrations = ScmIntegrations.fromConfig(config);