diff options
Diffstat (limited to 'server/tests/helpers/dns.ts')
-rw-r--r-- | server/tests/helpers/dns.ts | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/server/tests/helpers/dns.ts b/server/tests/helpers/dns.ts deleted file mode 100644 index 49b506e7b..000000000 --- a/server/tests/helpers/dns.ts +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ | ||
2 | |||
3 | import { expect } from 'chai' | ||
4 | import { isResolvingToUnicastOnly } from '@server/helpers/dns' | ||
5 | |||
6 | describe('DNS helpers', function () { | ||
7 | |||
8 | it('Should correctly check unicast IPs', async function () { | ||
9 | expect(await isResolvingToUnicastOnly('cpy.re')).to.be.true | ||
10 | expect(await isResolvingToUnicastOnly('framasoft.org')).to.be.true | ||
11 | expect(await isResolvingToUnicastOnly('8.8.8.8')).to.be.true | ||
12 | |||
13 | expect(await isResolvingToUnicastOnly('127.0.0.1')).to.be.false | ||
14 | expect(await isResolvingToUnicastOnly('127.0.0.1.cpy.re')).to.be.false | ||
15 | }) | ||
16 | }) | ||