@@ -32,7 +32,7 @@ describe('checkHiddenCommits.exec', () => {
3232 sandbox . restore ( ) ;
3333 } ) ;
3434
35- it . only ( 'reports all commits unreferenced and sets error=true' , async ( ) => {
35+ it ( 'reports all commits unreferenced and sets error=true' , async ( ) => {
3636 const COMMIT_1 = 'deadbeef' ;
3737 const COMMIT_2 = 'cafebabe' ;
3838
@@ -51,15 +51,15 @@ describe('checkHiddenCommits.exec', () => {
5151 await checkHidden ( { body : '' } , action ) ;
5252
5353 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` ) ;
5656 expect ( step . logs ) . to . include (
5757 `checkHiddenCommits - Unreferenced commits in pack (2): ${ COMMIT_1 } , ${ COMMIT_2 } ` ,
5858 ) ;
5959 expect ( action . error ) . to . be . true ;
6060 } ) ;
6161
62- it . only ( 'mixes referenced & unreferenced correctly' , async ( ) => {
62+ it ( 'mixes referenced & unreferenced correctly' , async ( ) => {
6363 const COMMIT_1 = 'deadbeef' ;
6464 const COMMIT_2 = 'cafebabe' ;
6565
@@ -78,15 +78,15 @@ describe('checkHiddenCommits.exec', () => {
7878 await checkHidden ( { body : '' } , action ) ;
7979
8080 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' ) ;
8383 expect ( step . logs ) . to . include (
8484 `checkHiddenCommits - Unreferenced commits in pack (1): ${ COMMIT_2 } ` ,
8585 ) ;
8686 expect ( action . error ) . to . be . true ;
8787 } ) ;
8888
89- it . only ( 'reports all commits referenced and sets error=false' , async ( ) => {
89+ it ( 'reports all commits referenced and sets error=false' , async ( ) => {
9090 // 1) rev-list → introduces both commits
9191 // 2) verify-pack → the pack contains the same two commits
9292 spawnSyncStub . onFirstCall ( ) . returns ( { stdout : 'deadbeef\ncafebabe\n' } ) . onSecondCall ( ) . returns ( {
@@ -106,7 +106,7 @@ describe('checkHiddenCommits.exec', () => {
106106 expect ( action . error ) . to . be . false ;
107107 } ) ;
108108
109- it . only ( 'throws if commitFrom or commitTo is missing' , async ( ) => {
109+ it ( 'throws if commitFrom or commitTo is missing' , async ( ) => {
110110 delete action . commitFrom ;
111111
112112 try {
0 commit comments