Update json.test.js

This commit is contained in:
William Harrison
2025-03-06 20:18:36 +08:00
committed by GitHub
parent 29e76ab46e
commit ca946cb5d2
+2 -2
View File
@@ -119,7 +119,7 @@ async function validateFileName(t, file) {
}
}
async function processFile(file) {
async function processFile(file, t) {
const filePath = path.join(domainsPath, file);
const data = await fs.readJson(filePath);
@@ -171,7 +171,7 @@ t("All files should have valid file names", async (t) => {
});
t("All files should have valid required and optional fields", async (t) => {
await Promise.all(files.map((file) => processFile(file)));
await Promise.all(files.map((file) => processFile(file, t)));
});
t("Reserved domains file should be valid", (t) => {