@@ -49,6 +49,7 @@ describe('create-package-json', () => {
4949 const pluginConfig = create ( baseOptions ) ;
5050 const pluginOutput = await executePlugin ( pluginConfig , {
5151 persist : { outputDir : '.code-pushup' } ,
52+ cache : { read : false , write : false } ,
5253 } ) ;
5354
5455 expect ( ( ) => pluginReportSchema . parse ( pluginOutput ) ) . not . toThrow ( ) ;
@@ -72,6 +73,7 @@ describe('create-package-json', () => {
7273 } ) ;
7374 const { audits : auditOutputs } = await executePlugin ( pluginConfig , {
7475 persist : { outputDir : '.code-pushup' } ,
76+ cache : { read : false , write : false } ,
7577 } ) ;
7678
7779 expect ( auditOutputs [ 0 ] ?. value ) . toBe ( 1 ) ;
@@ -91,6 +93,7 @@ describe('create-package-json', () => {
9193 } ) ;
9294 const { audits : auditOutputs } = await executePlugin ( pluginConfig , {
9395 persist : { outputDir : '.code-pushup' } ,
96+ cache : { read : false , write : false } ,
9497 } ) ;
9598
9699 expect ( auditOutputs [ 1 ] ?. slug ) . toBe ( 'package-type' ) ;
@@ -112,6 +115,7 @@ describe('create-package-json', () => {
112115 } ) ;
113116 const { audits : auditOutputs } = await executePlugin ( pluginConfig , {
114117 persist : { outputDir : '.code-pushup' } ,
118+ cache : { read : false , write : false } ,
115119 } ) ;
116120
117121 expect ( auditOutputs ) . toHaveLength ( audits . length ) ;
@@ -135,6 +139,7 @@ describe('create-package-json', () => {
135139 } ) ;
136140 const { audits : auditOutputs } = await executePlugin ( pluginConfig , {
137141 persist : { outputDir : '.code-pushup' } ,
142+ cache : { read : false , write : false } ,
138143 } ) ;
139144
140145 expect ( auditOutputs ) . toHaveLength ( audits . length ) ;
@@ -158,6 +163,7 @@ describe('create-package-json', () => {
158163 } ) ;
159164 const { audits : auditOutputs } = await executePlugin ( pluginConfig , {
160165 persist : { outputDir : '.code-pushup' } ,
166+ cache : { read : false , write : false } ,
161167 } ) ;
162168
163169 expect ( auditOutputs ) . toHaveLength ( audits . length ) ;
0 commit comments