fix(core): update

This commit is contained in:
2020-08-05 15:37:51 +00:00
parent c8cf590a5a
commit b463aea274
8 changed files with 9920 additions and 665 deletions

View File

@ -15,8 +15,8 @@ tap.test('should get an A DNS Record', async () => {
name: 'dnsly_a.bleu.de',
value: '127.0.0.1',
dnsSecEnabled: false,
type: 'A'
}
type: 'A',
},
]);
});
@ -26,8 +26,8 @@ tap.test('should get an AAAA Record', async () => {
name: 'dnsly_aaaa.bleu.de',
value: '::1',
dnsSecEnabled: false,
type: 'AAAA'
}
type: 'AAAA',
},
]);
});
@ -37,8 +37,8 @@ tap.test('should get a txt record', async () => {
name: 'dnsly_txt.bleu.de',
value: 'sometext_txt',
type: 'TXT',
dnsSecEnabled: false
}
dnsSecEnabled: false,
},
]);
});