Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Dec 11, 2024
1 parent 183ee0f commit 7b16748
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/functional/ingestion/IngestionReader.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,12 @@ describe.only('ingestion reader tests with mock', function fD() {
});

// Initialize management service
await initManagement(testConfig);
await new Promise((resolve, reject) => {
initManagement(testConfig, err => {
if (err) return reject(err);
resolve();
});
});

// Start HTTP server for mock metadata service
const metadataMock = new MetadataMock();
Expand Down

0 comments on commit 7b16748

Please sign in to comment.