Add smoke tests for domain lookup: implement RDAP and WHOIS scenarios for example domains, including negative cases for RDAP-only lookups. Enhance test coverage for date parsing with non-null assertions in date tests.

This commit is contained in:
2025-09-24 18:35:33 -04:00
parent 36cf6d6b38
commit 4f568ac409
4 changed files with 110 additions and 4 deletions
+1 -1
View File
@@ -19,7 +19,7 @@
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"test": "tsc && node --test dist/**/*.test.js",
"test": "npm run clean && tsc -p tsconfig.json && node --test dist/**/*.test.js",
"lint": "biome check --write",
"prepublishOnly": "npm run build"
},