From 11a489f2fafa49a725480c8e4e0ef5c47db30e37 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Sat, 12 Oct 2024 18:06:35 +0200 Subject: [PATCH] Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Fredrik Adelöw Signed-off-by: Patrik Oldsberg --- packages/cli/templates/default-backend-plugin/dev/index.ts.hbs | 2 +- .../cli/templates/default-backend-plugin/src/plugin.test.ts.hbs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/templates/default-backend-plugin/dev/index.ts.hbs b/packages/cli/templates/default-backend-plugin/dev/index.ts.hbs index 07dc091083..ce1d2919c9 100644 --- a/packages/cli/templates/default-backend-plugin/dev/index.ts.hbs +++ b/packages/cli/templates/default-backend-plugin/dev/index.ts.hbs @@ -7,7 +7,7 @@ import { catalogServiceMock } from '@backstage/plugin-catalog-node/testUtils'; // minimal backend that can use both real and mocked plugins and services. // // Start up the backend by running `yarn start` in the package directory. -// It's it's up and running, try out the following requests: +// Once it's up and running, try out the following requests: // // Create a new todo item, standalone or for the sample component: // diff --git a/packages/cli/templates/default-backend-plugin/src/plugin.test.ts.hbs b/packages/cli/templates/default-backend-plugin/src/plugin.test.ts.hbs index cd4b9fc438..b6f387383e 100644 --- a/packages/cli/templates/default-backend-plugin/src/plugin.test.ts.hbs +++ b/packages/cli/templates/default-backend-plugin/src/plugin.test.ts.hbs @@ -9,7 +9,7 @@ import { catalogServiceMock } from '@backstage/plugin-catalog-node/testUtils'; // TEMPLATE NOTE: // Plugin tests are integration tests for your plugin, ensuring that all pieces // work together end-to-end. You can still mock injected backend services -// however, just like anyway that installs your plugin might replace the +// however, just like anyone who installs your plugin might replace the // services with their own implementations. describe('plugin', () => { it('should create and read TODO items', async () => {