Change default organization to be set to My Company instead of Spotify / Acme Organization (#2918)
This commit is contained in:
+3
-3
@@ -41,7 +41,7 @@ proxy:
|
||||
$env: NEW_RELIC_REST_API_KEY
|
||||
|
||||
organization:
|
||||
name: Spotify
|
||||
name: My Company
|
||||
|
||||
techdocs:
|
||||
storageUrl: http://localhost:7000/api/techdocs/static/docs
|
||||
@@ -50,10 +50,10 @@ techdocs:
|
||||
techdocs: 'docker'
|
||||
|
||||
sentry:
|
||||
organization: spotify
|
||||
organization: my-company
|
||||
|
||||
rollbar:
|
||||
organization: spotify
|
||||
organization: my-company
|
||||
accountToken:
|
||||
$env: ROLLBAR_ACCOUNT_TOKEN
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ app:
|
||||
baseUrl: http://localhost:7000
|
||||
|
||||
organization:
|
||||
name: Acme Corporation
|
||||
name: My Company
|
||||
|
||||
backend:
|
||||
baseUrl: http://localhost:7000
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
describe('App', () => {
|
||||
it('should render the catalog', () => {
|
||||
cy.visit('/');
|
||||
cy.contains('Acme Corporation Service Catalog');
|
||||
cy.contains('My Company Service Catalog');
|
||||
});
|
||||
});
|
||||
|
||||
@@ -301,11 +301,7 @@ async function testAppServe(pluginName: string, appDir: string) {
|
||||
try {
|
||||
const browser = new Browser();
|
||||
|
||||
await waitForPageWithText(
|
||||
browser,
|
||||
'/',
|
||||
'Acme Corporation Service Catalog',
|
||||
);
|
||||
await waitForPageWithText(browser, '/', 'My Company Service Catalog');
|
||||
await waitForPageWithText(
|
||||
browser,
|
||||
`/${pluginName}`,
|
||||
|
||||
Reference in New Issue
Block a user