Merge pull request #24638 from mdb/mdb/add-semi-colon

chore(plugin-template): add missing semicolon
This commit is contained in:
Fredrik Adelöw
2024-05-06 07:13:37 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
Add previously-missing semicolon in file templated by `backstage-cli new --select plugin`.
@@ -8,7 +8,7 @@ describe('ExampleFetchComponent', () => {
// Wait for the table to render
const table = await screen.findByRole('table');
const nationality = screen.getAllByText('GB')
const nationality = screen.getAllByText('GB');
// Assert that the table contains the expected user data
expect(table).toBeInTheDocument();
expect(screen.getByAltText('Carolyn')).toBeInTheDocument();