Merge branch 'main' into main

This commit is contained in:
CuteDog5695
2024-08-14 15:51:47 +03:00
committed by GitHub
3 changed files with 4 additions and 0 deletions
+2
View File
@@ -87,6 +87,7 @@ describe("validateDomainData", () => {
{ ...defaultDomain, name: "_dmarc" },
{ ...defaultDomain, name: "_gh-is-a-dev" },
{ ...defaultDomain, name: "_domainkey" },
{ ...defaultDomain, name: "_improvmx" },
];
const validCases = [
@@ -141,6 +142,7 @@ describe("validateDomainData", () => {
{ ...defaultDomain, name: "_gh-hello01_ga" },
{ ...defaultDomain, name: "_domainkey.subdomain" },
{ ...defaultDomain, name: "mx._domainkey.subdomain" },
{ ...defaultDomain, name: '_improvmx.subdomain' },
{ ...defaultDomain, name: "a.b" },
];
+1
View File
@@ -7,6 +7,7 @@
"_github-challenge-is-a-dev",
"_github-pages-challenge-is-a-dev",
"_gitlab-pages-verification-code",
"_improvmx",
"con",
"help",
"no-reply",
+1
View File
@@ -59,6 +59,7 @@ const extraSupportedNames = [
R.equals("_acme-challenge"),
R.equals("_dmarc"),
R.equals("_domainkey"),
R.equals("_improvmx"),
testRegex(/^_gh-[a-z0-9-_]+$/i),
];