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/usage_quotas/storage/components/namespace_storage_app_spec.js')
-rw-r--r--spec/frontend/usage_quotas/storage/components/namespace_storage_app_spec.js14
1 files changed, 5 insertions, 9 deletions
diff --git a/spec/frontend/usage_quotas/storage/components/namespace_storage_app_spec.js b/spec/frontend/usage_quotas/storage/components/namespace_storage_app_spec.js
index 544666ddc5d..f9bc3d4da85 100644
--- a/spec/frontend/usage_quotas/storage/components/namespace_storage_app_spec.js
+++ b/spec/frontend/usage_quotas/storage/components/namespace_storage_app_spec.js
@@ -4,20 +4,16 @@ import NamespaceStorageApp from '~/usage_quotas/storage/components/namespace_sto
import StorageUsageStatistics from '~/usage_quotas/storage/components/storage_usage_statistics.vue';
import DependencyProxyUsage from '~/usage_quotas/storage/components/dependency_proxy_usage.vue';
import ContainerRegistryUsage from '~/usage_quotas/storage/components/container_registry_usage.vue';
-import { defaultNamespaceProvideValues } from '../mock_data';
+import {
+ defaultNamespaceProvideValues,
+ mockGetNamespaceStorageGraphQLResponse,
+} from '../mock_data';
const defaultProps = {
namespaceLoadingError: false,
projectsLoadingError: false,
isNamespaceStorageStatisticsLoading: false,
- // hardcoding object until we move test_fixtures from ee/ to here
- namespace: {
- rootStorageStatistics: {
- storageSize: 1234,
- containerRegistrySize: 111,
- containerRegistrySizeIsEstimated: false,
- },
- },
+ namespace: mockGetNamespaceStorageGraphQLResponse.data.namespace,
};
describe('NamespaceStorageApp', () => {