Skip to content

Commit

Permalink
fix(NA): include status on syncthetics_store.mock.ts (#132764)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed May 24, 2022
1 parent 83a05ff commit 35a4274
Showing 1 changed file with 13 additions and 0 deletions.
Expand Up @@ -6,6 +6,7 @@
*/

import { SyntheticsAppState } from '../../../state/root_reducer';
import { LocationStatus } from '../../../../../../common/runtime_types';

/**
* NOTE: This variable name MUST start with 'mock*' in order for
Expand Down Expand Up @@ -36,6 +37,18 @@ export const mockState: SyntheticsAppState = {
},
url: 'https://test.elastic.dev',
isServiceManaged: true,
status: LocationStatus.GA,
},
{
id: 'us_east',
label: 'US East',
geo: {
lat: 41.25,
lon: -95.86,
},
url: 'https://test.elastic.dev',
isServiceManaged: true,
status: LocationStatus.EXPERIMENTAL,
},
],
loading: false,
Expand Down

0 comments on commit 35a4274

Please sign in to comment.