File tree 2 files changed +15
-15
lines changed
2 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -303,5 +303,20 @@ class AssetCache {
303
303
304
304
return this . source ;
305
305
}
306
+
307
+ // for testing
308
+ hasCacheFiles ( ) {
309
+ return fs . existsSync ( this . cachePath ) || fs . existsSync ( this . getCachedContentsPath ( ) ) ;
310
+ }
311
+
312
+ // for testing
313
+ async destroy ( ) {
314
+ if ( fs . existsSync ( this . cachePath ) ) {
315
+ await fsp . unlink ( this . cachePath ) ;
316
+ }
317
+ if ( fs . existsSync ( this . getCachedContentsPath ( ) ) ) {
318
+ await fsp . unlink ( this . getCachedContentsPath ( ) ) ;
319
+ }
320
+ }
306
321
}
307
322
module . exports = AssetCache ;
Original file line number Diff line number Diff line change @@ -118,20 +118,5 @@ class RemoteAssetCache extends AssetCache {
118
118
}
119
119
}
120
120
}
121
-
122
- // for testing
123
- hasCacheFiles ( ) {
124
- return fs . existsSync ( this . cachePath ) || fs . existsSync ( this . getCachedContentsPath ( ) ) ;
125
- }
126
-
127
- // for testing
128
- async destroy ( ) {
129
- if ( fs . existsSync ( this . cachePath ) ) {
130
- await fsp . unlink ( this . cachePath ) ;
131
- }
132
- if ( fs . existsSync ( this . getCachedContentsPath ( ) ) ) {
133
- await fsp . unlink ( this . getCachedContentsPath ( ) ) ;
134
- }
135
- }
136
121
}
137
122
module . exports = RemoteAssetCache ;
You can’t perform that action at this time.
0 commit comments