Merge pull request #2908 from althafh/catalog-name
Use organization name as the prefix for Service Catalog
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
describe('App', () => {
|
||||
it('should render the catalog', () => {
|
||||
cy.visit('/');
|
||||
cy.contains('Backstage Service Catalog');
|
||||
cy.contains('Acme Corporation Service Catalog');
|
||||
});
|
||||
});
|
||||
|
||||
@@ -301,7 +301,11 @@ async function testAppServe(pluginName: string, appDir: string) {
|
||||
try {
|
||||
const browser = new Browser();
|
||||
|
||||
await waitForPageWithText(browser, '/', 'Backstage Service Catalog');
|
||||
await waitForPageWithText(
|
||||
browser,
|
||||
'/',
|
||||
'Acme Corporation Service Catalog',
|
||||
);
|
||||
await waitForPageWithText(
|
||||
browser,
|
||||
`/${pluginName}`,
|
||||
|
||||
Reference in New Issue
Block a user