We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2181da3 commit 3696430Copy full SHA for 3696430
test/TestCases.template.js
@@ -164,8 +164,8 @@ const describeCases = config => {
164
});
165
}, new webpack.ProgressPlugin((...args) => {
166
log.push(args);
167
- if(startTime && startTime + 50000 > Date.now()) {
168
- process.stdout.write(`\n\nBUSY HANGING ${config.name} ${category.name} ${testName}\n`);
+ if(startTime && startTime + 50000 < Date.now()) {
+ process.stdout.write(`\n\nBUSY HANGING ${config.name} ${category.name} ${testName} ${Date.now() - startTime}ms\n`);
169
for(const line of log) {
170
process.stdout.write(line.join(" ") + "\n");
171
}
0 commit comments