Skip to content

Commit

Permalink
More logging
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasAlaif committed Feb 14, 2024
1 parent ba05085 commit 5304edf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions client/src/test/TestHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ export default class TestHelper {
public static waitForVerification(fileName: string, backend?: string): Promise<void> {
return new Promise(resolve => {
TestHelper.callbacks.verificationComplete = (b, f) => {
Log.error(`Verification Completed: file: ${f}, backend: ${b} (expected: ${fileName}, ${backend})`);
TestHelper.log(`Verification Completed: file: ${f}, backend: ${b}`);
if ((!backend || b.toLowerCase() === backend.toLowerCase()) && f === fileName) {
resolve();
Expand Down

0 comments on commit 5304edf

Please sign in to comment.