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 973dbac commit ecb01c3Copy full SHA for ecb01c3
test/setup/index.ts
@@ -1,4 +1,4 @@
1
-import { readFileSync, unlinkSync, writeFileSync } from 'fs';
+import { readFileSync, writeFileSync } from 'fs';
2
import * as sleep from 'sleep-promise';
3
import * as uuidv4 from 'uuid/v4';
4
import { parse, stringify } from 'yaml';
@@ -67,13 +67,6 @@ export async function removeMonitor(): Promise<void> {
67
} catch (error) {
68
console.log(`Could not remove the Kubernetes-Monitor: ${error.message}`);
69
}
70
-
71
- console.log('Removing test YAML file...');
72
- try {
73
- unlinkSync('snyk-monitor-test-deployment.yaml');
74
- } catch (error) {
75
- console.log(`Could not delete the test YAML file: ${error.message}`);
76
- }
77
78
79
async function createEnvironment(): Promise<void> {
0 commit comments