@@ -14,6 +14,8 @@ describe('dependency cache', () => {
14
14
let workspace : string ;
15
15
let spyInfo : jest . SpyInstance < void , Parameters < typeof core . info > > ;
16
16
let spyWarning : jest . SpyInstance < void , Parameters < typeof core . warning > > ;
17
+ let spyDebug : jest . SpyInstance < void , Parameters < typeof core . debug > > ;
18
+ let spySaveState : jest . SpyInstance < void , Parameters < typeof core . saveState > > ;
17
19
18
20
beforeEach ( ( ) => {
19
21
workspace = mkdtempSync ( join ( tmpdir ( ) , 'setup-java-cache-' ) ) ;
@@ -38,7 +40,16 @@ describe('dependency cache', () => {
38
40
39
41
beforeEach ( ( ) => {
40
42
spyInfo = jest . spyOn ( core , 'info' ) ;
43
+ spyInfo . mockImplementation ( ( ) => null ) ;
44
+
41
45
spyWarning = jest . spyOn ( core , 'warning' ) ;
46
+ spyWarning . mockImplementation ( ( ) => null ) ;
47
+
48
+ spyDebug = jest . spyOn ( core , 'debug' ) ;
49
+ spyDebug . mockImplementation ( ( ) => null ) ;
50
+
51
+ spySaveState = jest . spyOn ( core , 'saveState' ) ;
52
+ spySaveState . mockImplementation ( ( ) => null ) ;
42
53
} ) ;
43
54
44
55
afterEach ( ( ) => {
@@ -58,6 +69,7 @@ describe('dependency cache', () => {
58
69
spyCacheRestore = jest
59
70
. spyOn ( cache , 'restoreCache' )
60
71
. mockImplementation ( ( paths : string [ ] , primaryKey : string ) => Promise . resolve ( undefined ) ) ;
72
+ spyWarning . mockImplementation ( ( ) => null ) ;
61
73
} ) ;
62
74
63
75
it ( 'throws error if unsupported package manager specified' , ( ) => {
@@ -117,6 +129,7 @@ describe('dependency cache', () => {
117
129
spyCacheSave = jest
118
130
. spyOn ( cache , 'saveCache' )
119
131
. mockImplementation ( ( paths : string [ ] , key : string ) => Promise . resolve ( 0 ) ) ;
132
+ spyWarning . mockImplementation ( ( ) => null ) ;
120
133
} ) ;
121
134
122
135
it ( 'throws error if unsupported package manager specified' , ( ) => {
0 commit comments