Skip to content

Commit 10aa12e

Browse files
committed
show success message
1 parent 84e59c3 commit 10aa12e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/browser-integration-tests/scripts/detectFlakyTests.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,14 @@ ${changedPaths.join('\n')}
4343
}
4444
}
4545

46+
console.log('');
47+
console.log('');
48+
4649
if (failed.length > 0) {
47-
console.log('');
4850
console.error(`⚠️ ${failed.length} test(s) failed.`);
4951
process.exit(1);
52+
} else {
53+
console.log(`☑️ ${testPaths.length} test(s) passed.`);
5054
}
5155
}
5256

0 commit comments

Comments
 (0)