Skip to content

Commit f82c45e

Browse files
author
Kanchalai Tanglertsampan
committed
Address PR
1 parent f476ece commit f82c45e

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

scripts/mocha-parallel.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,8 @@ function runTests(taskConfigsFolder, run, options, cb) {
174174
var isPartitionFail = partition.failed || code !== 0;
175175
var summaryColor = isPartitionFail ? "fail" : "green";
176176
var summarySymbol = isPartitionFail ? Base.symbols.err : Base.symbols.ok;
177-
if (partition.passed === 54107) {
178-
console.log(partition);
179-
}
180-
var summaryTests = (isPartitionFail ? partition.passed + "/" + partition.tests : partition.passed) + " passssssing";
177+
178+
var summaryTests = (isPartitionFail ? partition.passed + "/" + partition.tests : partition.passed) + " passing";
181179
var summaryDuration = "(" + ms(partition.duration) + ")";
182180
var savedUseColors = Base.useColors;
183181
Base.useColors = !options.noColors;

src/compiler/parser.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4810,7 +4810,6 @@ namespace ts {
48104810
case SyntaxKind.ImportKeyword:
48114811
return true;
48124812

4813-
48144813
case SyntaxKind.ConstKeyword:
48154814
case SyntaxKind.ExportKeyword:
48164815
return isStartOfDeclaration();

0 commit comments

Comments
 (0)