mirror of
https://github.com/fosrl/pangolin.git
synced 2026-06-24 16:21:45 +00:00
test: add normalized ASN validation coverage
This commit is contained in:
committed by
Owen
parent
de48a0529e
commit
e5e7b79712
@@ -101,7 +101,7 @@ export function getResourceRuleValueValidationError(
|
||||
: "Invalid country code provided";
|
||||
case "ASN":
|
||||
const normalizedValue = value.trim().toUpperCase();
|
||||
return /^AS\d+$/i.test(normalizedValue) ||
|
||||
return /^AS\d+$/.test(normalizedValue) ||
|
||||
normalizedValue === "ALL" ||
|
||||
normalizedValue === "AS0"
|
||||
? null
|
||||
|
||||
Reference in New Issue
Block a user