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/usage_graph_spec.js')
-rw-r--r--spec/frontend/usage_quotas/storage/components/usage_graph_spec.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/spec/frontend/usage_quotas/storage/components/usage_graph_spec.js b/spec/frontend/usage_quotas/storage/components/usage_graph_spec.js
index 2662711076b..7fef20c900e 100644
--- a/spec/frontend/usage_quotas/storage/components/usage_graph_spec.js
+++ b/spec/frontend/usage_quotas/storage/components/usage_graph_spec.js
@@ -19,7 +19,7 @@ function findStorageTypeUsagesSerialized() {
.wrappers.map((wp) => wp.element.style.flex);
}
-describe('Storage Counter usage graph component', () => {
+describe('UsageGraph', () => {
beforeEach(() => {
data = {
rootStorageStatistics: {
@@ -29,7 +29,6 @@ describe('Storage Counter usage graph component', () => {
containerRegistrySize: 2500,
lfsObjectsSize: 2000,
buildArtifactsSize: 700,
- pipelineArtifactsSize: 300,
snippetsSize: 2000,
storageSize: 17000,
},
@@ -43,7 +42,6 @@ describe('Storage Counter usage graph component', () => {
const {
buildArtifactsSize,
- pipelineArtifactsSize,
lfsObjectsSize,
packagesSize,
containerRegistrySize,
@@ -69,9 +67,6 @@ describe('Storage Counter usage graph component', () => {
expect(types.at(6).text()).toMatchInterpolatedText(
`Job artifacts ${numberToHumanSize(buildArtifactsSize)}`,
);
- expect(types.at(7).text()).toMatchInterpolatedText(
- `Pipeline artifacts ${numberToHumanSize(pipelineArtifactsSize)}`,
- );
});
describe('when storage type is not used', () => {
@@ -111,7 +106,6 @@ describe('Storage Counter usage graph component', () => {
'0.11764705882352941',
'0.11764705882352941',
'0.041176470588235294',
- '0.01764705882352941',
]);
});
});
@@ -131,7 +125,6 @@ describe('Storage Counter usage graph component', () => {
'0.11764705882352941',
'0.11764705882352941',
'0.041176470588235294',
- '0.01764705882352941',
]);
});
});