Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/import_entities/import_groups/graphql/services/local_storage_cache_spec.js')
-rw-r--r--spec/frontend/import_entities/import_groups/graphql/services/local_storage_cache_spec.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/frontend/import_entities/import_groups/graphql/services/local_storage_cache_spec.js b/spec/frontend/import_entities/import_groups/graphql/services/local_storage_cache_spec.js
index b44a2767ad8..d1ecd47b498 100644
--- a/spec/frontend/import_entities/import_groups/graphql/services/local_storage_cache_spec.js
+++ b/spec/frontend/import_entities/import_groups/graphql/services/local_storage_cache_spec.js
@@ -40,10 +40,11 @@ describe('Local storage cache', () => {
progress: {
id: JOB_ID,
status: 'original',
+ hasFailures: false,
},
});
- cache.updateStatusByJobId(JOB_ID, CHANGED_STATUS);
+ cache.updateStatusByJobId(JOB_ID, CHANGED_STATUS, true);
expect(storage.setItem).toHaveBeenCalledWith(
KEY,
@@ -52,6 +53,7 @@ describe('Local storage cache', () => {
progress: {
id: JOB_ID,
status: CHANGED_STATUS,
+ hasFailures: true,
},
},
}),