@@ -32,7 +32,7 @@ describe('checkHiddenCommits.exec', () => {
32
32
sandbox . restore ( ) ;
33
33
} ) ;
34
34
35
- it . only ( 'reports all commits unreferenced and sets error=true' , async ( ) => {
35
+ it ( 'reports all commits unreferenced and sets error=true' , async ( ) => {
36
36
const COMMIT_1 = 'deadbeef' ;
37
37
const COMMIT_2 = 'cafebabe' ;
38
38
@@ -51,15 +51,15 @@ describe('checkHiddenCommits.exec', () => {
51
51
await checkHidden ( { body : '' } , action ) ;
52
52
53
53
const step = action . steps . find ( ( s ) => s . stepName === 'checkHiddenCommits' ) ;
54
- expect ( step . logs ) . to . include ( `checkHiddenCommits - ✅ Referenced commits: 0` ) ;
55
- expect ( step . logs ) . to . include ( `checkHiddenCommits - ❌ Unreferenced commits: 2` ) ;
54
+ expect ( step . logs ) . to . include ( `checkHiddenCommits - Referenced commits: 0` ) ;
55
+ expect ( step . logs ) . to . include ( `checkHiddenCommits - Unreferenced commits: 2` ) ;
56
56
expect ( step . logs ) . to . include (
57
57
`checkHiddenCommits - Unreferenced commits in pack (2): ${ COMMIT_1 } , ${ COMMIT_2 } ` ,
58
58
) ;
59
59
expect ( action . error ) . to . be . true ;
60
60
} ) ;
61
61
62
- it . only ( 'mixes referenced & unreferenced correctly' , async ( ) => {
62
+ it ( 'mixes referenced & unreferenced correctly' , async ( ) => {
63
63
const COMMIT_1 = 'deadbeef' ;
64
64
const COMMIT_2 = 'cafebabe' ;
65
65
@@ -78,15 +78,15 @@ describe('checkHiddenCommits.exec', () => {
78
78
await checkHidden ( { body : '' } , action ) ;
79
79
80
80
const step = action . steps . find ( ( s ) => s . stepName === 'checkHiddenCommits' ) ;
81
- expect ( step . logs ) . to . include ( 'checkHiddenCommits - ✅ Referenced commits: 1' ) ;
82
- expect ( step . logs ) . to . include ( 'checkHiddenCommits - ❌ Unreferenced commits: 1' ) ;
81
+ expect ( step . logs ) . to . include ( 'checkHiddenCommits - Referenced commits: 1' ) ;
82
+ expect ( step . logs ) . to . include ( 'checkHiddenCommits - Unreferenced commits: 1' ) ;
83
83
expect ( step . logs ) . to . include (
84
84
`checkHiddenCommits - Unreferenced commits in pack (1): ${ COMMIT_2 } ` ,
85
85
) ;
86
86
expect ( action . error ) . to . be . true ;
87
87
} ) ;
88
88
89
- it . only ( 'reports all commits referenced and sets error=false' , async ( ) => {
89
+ it ( 'reports all commits referenced and sets error=false' , async ( ) => {
90
90
// 1) rev-list → introduces both commits
91
91
// 2) verify-pack → the pack contains the same two commits
92
92
spawnSyncStub . onFirstCall ( ) . returns ( { stdout : 'deadbeef\ncafebabe\n' } ) . onSecondCall ( ) . returns ( {
@@ -106,7 +106,7 @@ describe('checkHiddenCommits.exec', () => {
106
106
expect ( action . error ) . to . be . false ;
107
107
} ) ;
108
108
109
- it . only ( 'throws if commitFrom or commitTo is missing' , async ( ) => {
109
+ it ( 'throws if commitFrom or commitTo is missing' , async ( ) => {
110
110
delete action . commitFrom ;
111
111
112
112
try {
0 commit comments