commit 221234edee6441f92491f0693fc48981d2489280
parent 08636991ae71765e7aafe9e7ea33c23a3b91b91f
Author: William Harrison <87287585+wdhdev@users.noreply.github.com>
Date: Wed, 5 Aug 2026 20:09:34 +0800
fix tests failing due to no resolve
Diffstat:
2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/tests/domains.test.js b/tests/domains.test.js
@@ -33,6 +33,8 @@ t("Nested subdomains should not exist without a parent subdomain", (t) => {
t.true(files.includes(`${parent}.json`), `${file}: Parent subdomain "${parent}" does not exist`);
}
});
+
+ t.pass();
});
t("Nested subdomains should not exist if any parent subdomain has NS records", (t) => {
@@ -48,6 +50,8 @@ t("Nested subdomains should not exist if any parent subdomain has NS records", (
t.true(!parentData.records.NS, `${file}: Parent subdomain "${parent}" has NS records`);
}
});
+
+ t.pass();
});
t("Nested subdomains should be owned by the parent subdomain's owner", (t) => {
@@ -65,4 +69,6 @@ t("Nested subdomains should be owned by the parent subdomain's owner", (t) => {
);
}
});
+
+ t.pass();
});
diff --git a/tests/proxy.test.js b/tests/proxy.test.js
@@ -42,6 +42,8 @@ t("Domains with proxy enabled must have at least one proxy-able record", (t) =>
validateProxiedRecords(t, data, file);
});
+
+ t.pass();
});
const unproxyable = [
@@ -79,4 +81,6 @@ t("Domains with specific records must not have proxy enabled", (t) => {
});
}
});
+
+ t.pass();
});