ImagesTable/RegionsPopover: add "go to beta" under launch
This commit is contained in:
parent
5f99bc79cf
commit
341b37a567
4 changed files with 61 additions and 2 deletions
|
|
@ -426,6 +426,22 @@ const mockCloneStatus = {
|
|||
},
|
||||
};
|
||||
|
||||
beforeAll(() => {
|
||||
global.insights = {
|
||||
chrome: {
|
||||
isBeta: () => {
|
||||
return false;
|
||||
},
|
||||
isProd: () => {
|
||||
return true;
|
||||
},
|
||||
getEnvironment: () => {
|
||||
return 'prod';
|
||||
},
|
||||
},
|
||||
};
|
||||
});
|
||||
|
||||
jest
|
||||
.spyOn(api, 'getComposes')
|
||||
.mockImplementation(() => Promise.resolve(mockComposes));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue