feat(core): Integrate Handelsregister search for company data retrieval

This commit is contained in:
2025-01-02 01:26:34 +01:00
parent 506a644c6b
commit 1eda50ad13
9 changed files with 180 additions and 18 deletions

View File

@ -12,4 +12,14 @@ tap.test('should start the instance', async () => {
await testOpenDataInstance.start();
})
tap.test('should get the data for a company', async () => {
const result = await testOpenDataInstance.handelsregister.getDataForCompany('Volkswagen');
console.log(result);
});
tap.test('should stop the instance', async () => {
await testOpenDataInstance.stop();
});
tap.start()