Skip to content

Commit 3696430

Browse files
committed
fix detection
1 parent 2181da3 commit 3696430

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/TestCases.template.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ const describeCases = config => {
164164
});
165165
}, new webpack.ProgressPlugin((...args) => {
166166
log.push(args);
167-
if(startTime && startTime + 50000 > Date.now()) {
168-
process.stdout.write(`\n\nBUSY HANGING ${config.name} ${category.name} ${testName}\n`);
167+
if(startTime && startTime + 50000 < Date.now()) {
168+
process.stdout.write(`\n\nBUSY HANGING ${config.name} ${category.name} ${testName} ${Date.now() - startTime}ms\n`);
169169
for(const line of log) {
170170
process.stdout.write(line.join(" ") + "\n");
171171
}

0 commit comments

Comments
 (0)