fix(dependencies & tests): Update dependency versions and refine test search query

This commit is contained in:
2025-04-05 09:02:32 +00:00
parent 39724b61d6
commit 43c9d3b3b6
5 changed files with 1475 additions and 1358 deletions

View File

@ -17,12 +17,12 @@ tap.test('should start the instance', async () => {
await testOpenDataInstance.start();
})
tap.skip.test('should build initial data', async () => {
tap.test('should build initial data', async () => {
await testOpenDataInstance.buildInitialDb();
});
const resultsSearch = tap.test('should get the data for a company', async () => {
const result = await testOpenDataInstance.handelsregister.searchCompany('Volkswagen', 20);
const result = await testOpenDataInstance.handelsregister.searchCompany('LADR', 20);
console.log(result);
return result;
});