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/clusters_list/mock_data.js')
-rw-r--r--spec/frontend/clusters_list/mock_data.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/spec/frontend/clusters_list/mock_data.js b/spec/frontend/clusters_list/mock_data.js
new file mode 100644
index 00000000000..0a49c2e9f43
--- /dev/null
+++ b/spec/frontend/clusters_list/mock_data.js
@@ -0,0 +1,37 @@
+export default [
+ {
+ name: 'My Cluster 1',
+ environmentScope: '*',
+ size: '3',
+ clusterType: 'group_type',
+ status: 'disabled',
+ },
+ {
+ name: 'My Cluster 2',
+ environmentScope: 'development',
+ size: '12',
+ clusterType: 'project_type',
+ status: 'unreachable',
+ },
+ {
+ name: 'My Cluster 3',
+ environmentScope: 'development',
+ size: '12',
+ clusterType: 'project_type',
+ status: 'authentication_failure',
+ },
+ {
+ name: 'My Cluster 4',
+ environmentScope: 'production',
+ size: '12',
+ clusterType: 'project_type',
+ status: 'deleting',
+ },
+ {
+ name: 'My Cluster 5',
+ environmentScope: 'development',
+ size: '12',
+ clusterType: 'project_type',
+ status: 'connected',
+ },
+];