Show CI artifacts size with 3 significant digits
This commit is contained in:
parent
59ac14aa6c
commit
d6b4b33c0d
3 changed files with 9 additions and 3 deletions
|
@ -14,4 +14,4 @@
|
||||||
= link_to path_to_file, class: 'str-truncated' do
|
= link_to path_to_file, class: 'str-truncated' do
|
||||||
%span= blob.name
|
%span= blob.name
|
||||||
%td
|
%td
|
||||||
= number_to_human_size(blob.size, precision: 2)
|
= number_to_human_size(blob.size)
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: Show CI artifact file size with 3 significant digits on 'browse job artifacts'
|
||||||
|
page
|
||||||
|
merge_request: 24387
|
||||||
|
author:
|
||||||
|
type: fixed
|
|
@ -25,8 +25,8 @@ describe "User browses artifacts" do
|
||||||
page.within(".tree-table") do
|
page.within(".tree-table") do
|
||||||
expect(page).to have_no_content("..")
|
expect(page).to have_no_content("..")
|
||||||
.and have_content("other_artifacts_0.1.2")
|
.and have_content("other_artifacts_0.1.2")
|
||||||
.and have_content("ci_artifacts.txt")
|
.and have_content("ci_artifacts.txt 27 Bytes")
|
||||||
.and have_content("rails_sample.jpg")
|
.and have_content("rails_sample.jpg 34.4 KB")
|
||||||
end
|
end
|
||||||
|
|
||||||
page.within(".build-header") do
|
page.within(".build-header") do
|
||||||
|
|
Loading…
Reference in a new issue