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 e84a3fa commit 1fb0537Copy full SHA for 1fb0537
src/controllers/test/index.js
@@ -66,6 +66,11 @@ export default class TestController {
66
if (socket) {
67
socket.on('close', () => {
68
testProcess.kill();
69
+
70
+ fileSystem.deleteFile(tempFilePath)
71
+ .catch(function (error) {
72
+ logger.error(`Failed to delete temporary test file ${tempFilePath} with error:`, error);
73
+ });
74
});
75
}
76
0 commit comments