Skip to content

Commit

Permalink
Update fakeTesetBaseUrl to a more recognizable hostname.
Browse files Browse the repository at this point in the history
Just in case it leaks somewhere and someone wants to know what it is
quickly!
  • Loading branch information
abernix committed Nov 25, 2019
1 parent 32e9ddc commit 400cd0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe('common', () => {
expect(
common.getLegacyOperationManifestUrl('aServiceId', 'aSchemaHash'),
).toMatchInlineSnapshot(
`"https://myfakehost/aServiceId/aSchemaHash.v2.json"`,
`"https://fake-host-for-apollo-op-reg-tests/aServiceId/aSchemaHash.v2.json"`,
);
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const envOverrideOperationManifest =

export const envOverrideStorageSecretBaseUrl = 'APOLLO_STORAGE_SECRET_BASE_URL';

export const fakeTestBaseUrl = 'https://myfakehost/';
export const fakeTestBaseUrl = 'https://fake-host-for-apollo-op-reg-tests/';

// Generate and cache our desired operation manifest URL.
export const urlOperationManifestBase: string = ((): string => {
Expand Down

0 comments on commit 400cd0e

Please sign in to comment.