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/ci/runner/mock_data.js')
-rw-r--r--spec/frontend/ci/runner/mock_data.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/frontend/ci/runner/mock_data.js b/spec/frontend/ci/runner/mock_data.js
index 51556650c32..58d8e0ee74a 100644
--- a/spec/frontend/ci/runner/mock_data.js
+++ b/spec/frontend/ci/runner/mock_data.js
@@ -43,6 +43,15 @@ const emptyPageInfo = {
endCursor: '',
};
+const runnerJobCountData = {
+ data: {
+ runner: {
+ id: 'gid://gitlab/Ci::Runner/99',
+ jobCount: 999,
+ },
+ },
+};
+
// Other mock data
// Mock searches and their corresponding urls
@@ -348,6 +357,7 @@ export {
groupRunnersCountData,
emptyPageInfo,
runnerData,
+ runnerJobCountData,
runnerWithGroupData,
runnerProjectsData,
runnerJobsData,