add missing dnsAuthorization for get test
This commit is contained in:
parent
6a32bf9e2f
commit
1e77bd19c9
1
index.js
1
index.js
|
@ -92,6 +92,7 @@ function run(challenger, opts) {
|
|||
// there should only be two possible TXT records per challenge domain:
|
||||
// one for the bare domain, and the other if and only if there's a wildcard
|
||||
query.wildcard = ch.wildcard;
|
||||
query.dnsAuthorization = ch.dnsAuthorization;
|
||||
} else {
|
||||
query = JSON.parse(JSON.stringify(ch));
|
||||
query.comment = 'unknown challenge type, supplying everything';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "acme-challenge-test",
|
||||
"version": "3.0.3",
|
||||
"version": "3.0.4",
|
||||
"description": "The base set of tests for all ACME challenge strategies. Any `acme-http-01-`, `acme-dns-01-`, `acme-challenge-`, or greenlock plugin should be able to pass these tests.",
|
||||
"main": "index.js",
|
||||
"homepage": "https://git.rootprojects.org/root/acme-challenge-test.js",
|
||||
|
@ -21,7 +21,8 @@
|
|||
"challenge",
|
||||
"plugin",
|
||||
"module",
|
||||
"strategy"
|
||||
"strategy",
|
||||
"greenlock"
|
||||
],
|
||||
"author": "AJ ONeal <solderjs@gmail.com> (https://solderjs.com/)",
|
||||
"license": "MPL-2.0"
|
||||
|
|
Loading…
Reference in New Issue