From b8a5eea87d2058dc492aae14e12b4eff4920c885 Mon Sep 17 00:00:00 2001 From: Sajid Alam Date: Tue, 14 Jan 2025 11:36:42 +0000 Subject: [PATCH] Update pipelines.test.js Signed-off-by: Sajid Alam --- src/actions/pipelines.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/pipelines.test.js b/src/actions/pipelines.test.js index c3f5d363d1..efcd48090c 100644 --- a/src/actions/pipelines.test.js +++ b/src/actions/pipelines.test.js @@ -91,7 +91,7 @@ describe('pipeline actions', () => { it('should return immediately', () => { const store = createStore(reducer, mockState.spaceflights); loadInitialPipelineData()(store.dispatch, store.getState); - expect(store.getState().loading.pipeline).toBe(false); + expect(store.getState().loading.pipeline).toBe(true); }); });