Skip to content

Commit

Permalink
updated: rename the filename for node resolvers
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiIgna committed May 22, 2024
1 parent cf4054d commit 2195ebc
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [18, 20, 21]
node-version: [18, 20, 22]

steps:
- uses: actions/checkout@v4
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/all-dns-records-node-dig.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { DnsRecord, getAllDnsRecords } from '../src/index.ts'
import { getDnsRecordsDig } from '../src/resolver-node-dig.ts'
import { getDnsRecordsDig } from '../src/node-resolvers.ts'

const domain = 'render.com'

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { strict as assert } from 'node:assert'
import test from 'node:test'

import { getDnsRecords, getAllDnsRecords } from '../dist/index.js'
import { getDnsRecordsDig } from '../dist/resolver-node-dig.js'
import { getDnsRecordsDig } from '../dist/node-resolvers.js'

test('get name servers for google.com (NS)', async () => {
const expectedNs = ['ns1.google.com.', 'ns2.google.com.', 'ns3.google.com.', 'ns4.google.com.']
Expand Down

0 comments on commit 2195ebc

Please sign in to comment.