We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c413f7 commit aa17a8fCopy full SHA for aa17a8f
src/core/k8.mjs
@@ -597,7 +597,7 @@ export class K8 {
597
}
598
599
try {
600
- // extract the downloaded file
+ // copy the downloaded file
601
fs.copyFileSync(tmpFile, destPath)
602
603
self._deleteTempFile(tmpFile)
@@ -607,7 +607,7 @@ export class K8 {
607
return resolve(true)
608
609
} catch (e) {
610
- return reject(new FullstackTestingError(`failed to extract file: ${destPath}`, e))
+ return reject(new FullstackTestingError(`failed to copy file: ${destPath}`, e))
611
612
613
return reject(new FullstackTestingError(`failed to download file completely: ${destPath}`))
0 commit comments