diff options
Diffstat (limited to 'tests/integration/helpers/network.mjs')
| -rw-r--r-- | tests/integration/helpers/network.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/helpers/network.mjs b/tests/integration/helpers/network.mjs index 0d6013d..020e8e8 100644 --- a/tests/integration/helpers/network.mjs +++ b/tests/integration/helpers/network.mjs | |||
| @@ -57,7 +57,7 @@ export function dnsResolvesToSelf(domain) { | |||
| 57 | const ip = getPortalIP(); | 57 | const ip = getPortalIP(); |
| 58 | try { | 58 | try { |
| 59 | const result = execSync( | 59 | const result = execSync( |
| 60 | `dig +short +timeout=5 ${domain} @{ip} 2>&1`, | 60 | `dig +short +timeout=5 ${domain} @${ip} 2>&1`, |
| 61 | { encoding: 'utf8', timeout: 10000 } | 61 | { encoding: 'utf8', timeout: 10000 } |
| 62 | ).trim(); | 62 | ).trim(); |
| 63 | return result === ip; | 63 | return result === ip; |