@@ -35,18 +35,22 @@ html(lang="en")
35
35
body.container-fluid
36
36
ul.nav.nav-pills.mt-3 ( role ='tablist' )
37
37
li.nav-item
38
- button.btn.btn-sm.btn-info.active ( id ='all-tab' , data-toggle ='pill' , href ='#all' , role ='tab' , aria-controls ='all' ) All
38
+ button.btn.btn-sm.btn-info.active.mr-2.mb-2 ( id ='all-tab' , data-toggle ='pill' , href ='#all' , role ='tab' , aria-controls ='all' ) All
39
39
span.badge.badge-light.ml-2 #{allCount}
40
40
if failedCount
41
41
li.nav-item
42
- button.btn.btn-sm.btn-danger.ml-3 ( id ='fail-tab' , data-toggle ='pill' , href ='#fail' , role ='tab' , aria-controls ='fail' ) Failed
42
+ button.btn.btn-sm.btn-danger.mr-2.mb-2 ( id ='fail-tab' , data-toggle ='pill' , href ='#fail' , role ='tab' , aria-controls ='fail' ) Failed
43
43
span.badge.badge-light.ml-2 #{failedCount}
44
44
if passedCount
45
45
li.nav-item
46
- button.btn.btn-sm.btn-success.ml-3 ( id ='pass-tab' , data-toggle ='pill' , href ='#pass' , role ='tab' , aria-controls ='pass' ) Passed
46
+ button.btn.btn-sm.btn-success.mr-2.mb-2 ( id ='pass-tab' , data-toggle ='pill' , href ='#pass' , role ='tab' , aria-controls ='pass' ) Passed
47
47
span.badge.badge-light.ml-2 #{passedCount}
48
+ if skippedCount
49
+ li.nav-item
50
+ button.btn.btn-sm.btn-secondary.mb-2 ( id ='skip-tab' , data-toggle ='pill' , href ='#skip' , role ='tab' , aria-controls ='skip' ) Skipped
51
+ span.badge.badge-light.ml-2 #{skippedCount}
48
52
49
- div.tab-content.mt-3
53
+ div.tab-content
50
54
div.tab-pane.fade.show.active ( id ='all' , role ='tabpanel' , aria-labelledby ='all-tab' )
51
55
+ collapseMethodTable(tests, 'detail-all' )
52
56
if failedCount
@@ -55,3 +59,6 @@ html(lang="en")
55
59
if passedCount
56
60
div.tab-pane.fade ( id ='pass' , role ='tabpanel' , aria-labelledby ='pass-tab' )
57
61
+ collapseMethodTable(passedTests, 'detail-pass' )
62
+ if skippedCount
63
+ div.tab-pane.fade ( id ='skip' , role ='tabpanel' , aria-labelledby ='skip-tab' )
64
+ + collapseMethodTable(skippedTests, 'detail-skip' )
0 commit comments