obsidian-testing-framework 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/internal-util.js +1 -1
- package/package.json +1 -1
package/lib/internal-util.js
CHANGED
|
@@ -85,6 +85,7 @@ export async function generateVaultConfig(vault, vaultHash, concurrent, vaultPoo
|
|
|
85
85
|
ts: Date.now(),
|
|
86
86
|
};
|
|
87
87
|
await writeFile(obsidianConfigFile, JSON.stringify(json, null, "\t"));
|
|
88
|
+
await writeFile(path.join(configLocation, `${vaultHash}.json`), "{}");
|
|
88
89
|
return vaultHash;
|
|
89
90
|
}
|
|
90
91
|
else {
|
|
@@ -97,6 +98,5 @@ export async function generateVaultConfig(vault, vaultHash, concurrent, vaultPoo
|
|
|
97
98
|
finally {
|
|
98
99
|
await releaser();
|
|
99
100
|
}
|
|
100
|
-
await writeFile(path.join(configLocation, `${vaultHash}.json`), "{}");
|
|
101
101
|
return vaultHash;
|
|
102
102
|
}
|