@@ -22,7 +22,7 @@ describe('executePlugin', () => {
2222 await expect (
2323 executePlugin ( MINIMAL_PLUGIN_CONFIG_MOCK , {
2424 persist : { outputDir : '' } ,
25- cache : { } ,
25+ cache : { read : false , write : false } ,
2626 } ) ,
2727 ) . resolves . toStrictEqual ( {
2828 slug : 'node' ,
@@ -60,7 +60,7 @@ describe('executePlugin', () => {
6060 await expect (
6161 executePlugin ( MINIMAL_PLUGIN_CONFIG_MOCK , {
6262 persist : { outputDir : 'dummy-path-result-is-mocked' } ,
63- cache : { read : true } ,
63+ cache : { read : true , write : false } ,
6464 } ) ,
6565 ) . resolves . toStrictEqual ( {
6666 slug : 'node' ,
@@ -103,7 +103,7 @@ describe('executePlugin', () => {
103103 await expect (
104104 executePlugin ( MINIMAL_PLUGIN_CONFIG_MOCK , {
105105 persist : { outputDir : 'dummy-path-result-is-mocked' } ,
106- cache : { read : true } ,
106+ cache : { read : true , write : false } ,
107107 } ) ,
108108 ) . resolves . toStrictEqual ( {
109109 slug : 'node' ,
@@ -138,7 +138,7 @@ describe('executePlugins', () => {
138138 } ,
139139 ] ,
140140 persist : { outputDir : '.code-pushup' } ,
141- cache : { } ,
141+ cache : { read : false , write : false } ,
142142 } ,
143143 { progress : false } ,
144144 ) ;
@@ -170,7 +170,7 @@ describe('executePlugins', () => {
170170 } ,
171171 ] satisfies PluginConfig [ ] ,
172172 persist : { outputDir : '.code-pushup' } ,
173- cache : { } ,
173+ cache : { read : false , write : false } ,
174174 } ,
175175 { progress : false } ,
176176 ) ,
@@ -202,7 +202,7 @@ describe('executePlugins', () => {
202202 } ,
203203 ] satisfies PluginConfig [ ] ,
204204 persist : { outputDir : '.code-pushup' } ,
205- cache : { } ,
205+ cache : { read : false , write : false } ,
206206 } ,
207207 { progress : false } ,
208208 ) ,
@@ -243,7 +243,7 @@ describe('executePlugins', () => {
243243 } ,
244244 ] satisfies PluginConfig [ ] ,
245245 persist : { outputDir : '.code-pushup' } ,
246- cache : { } ,
246+ cache : { read : false , write : false } ,
247247 } ,
248248 { progress : false } ,
249249 ) ,
@@ -285,7 +285,7 @@ describe('executePlugins', () => {
285285 } ,
286286 ] satisfies PluginConfig [ ] ,
287287 persist : { outputDir : '.code-pushup' } ,
288- cache : { } ,
288+ cache : { read : false , write : false } ,
289289 } ,
290290 { progress : false } ,
291291 ) ,
@@ -338,7 +338,7 @@ describe('executePlugins', () => {
338338 } ,
339339 ] ,
340340 persist : { outputDir : '.code-pushup' } ,
341- cache : { } ,
341+ cache : { read : false , write : false } ,
342342 } ,
343343 { progress : false } ,
344344 ) ;
0 commit comments