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 cd188f8 commit 9b88f4fCopy full SHA for 9b88f4f
.gitignore
@@ -5,7 +5,7 @@
5
*.js.map
6
7
# Test logs
8
-test-logs/**/*
+.test-logs/**/*
9
10
# Files tagged with .ignore
11
*.ignore
test/utils/attack-data.ts
@@ -54,7 +54,7 @@ async function getCachedOrFetchAttackData(
54
try {
55
if (await fileExists(filePath)) {
56
const data = await readFile(filePath, 'utf8');
57
- console.log(`Successfully read cached file: ${filePath}`);
+ // console.log(`Successfully read cached file: ${filePath}`);
58
59
return JSON.parse(data) as StixBundle;
60
} catch (parseError) {
0 commit comments