aboutsummaryrefslogtreecommitdiffstats
path: root/ui-react/src/components/dialogs/RefreshStatus.test.js
diff options
context:
space:
mode:
authorSébastien Determe <sebastien.determe@intl.att.com>2020-04-14 08:11:58 +0000
committerGerrit Code Review <gerrit@onap.org>2020-04-14 08:11:58 +0000
commitd3b04701712251befc0e92d96d8812029f5e313a (patch)
tree967e979402d701f994b0dd560edcded82cc058af /ui-react/src/components/dialogs/RefreshStatus.test.js
parentd2e5008edc93220a1117df5c864d828fbae9cc8d (diff)
parentcc5fe51690dc1f780c6b7cd1168e59dedc3b245f (diff)
Merge "Update suc alert color"
Diffstat (limited to 'ui-react/src/components/dialogs/RefreshStatus.test.js')
-rw-r--r--ui-react/src/components/dialogs/RefreshStatus.test.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/ui-react/src/components/dialogs/RefreshStatus.test.js b/ui-react/src/components/dialogs/RefreshStatus.test.js
index 3038eb321..e08c50d2e 100644
--- a/ui-react/src/components/dialogs/RefreshStatus.test.js
+++ b/ui-react/src/components/dialogs/RefreshStatus.test.js
@@ -35,9 +35,10 @@ describe('Verify RefreshStatus', () => {
it('Test refresh status failed', async () => {
const flushPromises = () => new Promise(setImmediate);
const historyMock = { push: jest.fn() };
- const showAlert = jest.fn();
+ const showSucAlert = jest.fn();
+ const showFailAlert = jest.fn();
- const component = shallow(<RefreshStatus loopCache={loopCache} history={historyMock} showAlert={showAlert} />)
+ const component = shallow(<RefreshStatus loopCache={loopCache} history={historyMock} showSucAlert={showSucAlert} showFailAlert={showFailAlert} />)
await flushPromises();
component.update();
@@ -48,7 +49,8 @@ describe('Verify RefreshStatus', () => {
const flushPromises = () => new Promise(setImmediate);
const historyMock = { push: jest.fn() };
const updateLoopFunction = jest.fn();
- const showAlert = jest.fn();
+ const showSucAlert = jest.fn();
+ const showFailAlert = jest.fn();
LoopActionService.refreshStatus = jest.fn().mockImplementation(() => {
return Promise.resolve({
@@ -59,7 +61,7 @@ describe('Verify RefreshStatus', () => {
});
const component = shallow(<RefreshStatus loopCache={loopCache}
- loopAction="submit" history={historyMock} updateLoopFunction={updateLoopFunction} showAlert={showAlert} />)
+ loopAction="submit" history={historyMock} updateLoopFunction={updateLoopFunction} showSucAlert={showSucAlert} showFailAlert={showFailAlert} />)
await flushPromises();
component.update();