in src/integratedShell.ts [111:116]
private async deletePng(cwd: string): Promise<void> {
const graphPath: string = path.join(cwd, IntegratedShell.GRAPH_FILE_NAME);
if (await fse.pathExists(graphPath)) {
await fse.remove(graphPath);
}
}