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 4de8482 commit c5af577Copy full SHA for c5af577
RexBench/UniPoker/benchmark.js
@@ -46,9 +46,7 @@ class Benchmark {
46
const playerExpectations = getPlayerExpectations(iterations)
47
if (this._players.length != playerExpectations.length)
48
throw "Expect " + playerExpectations.length + ", but actually have " + this._players.length;
49
- if (isInBrowser) {
50
- for (let playerIdx = 0; playerIdx < playerExpectations.length; playerIdx++)
51
- playerExpectations[playerIdx].validate(this._players[playerIdx]);
52
- }
+ for (let playerIdx = 0; playerIdx < playerExpectations.length; playerIdx++)
+ playerExpectations[playerIdx].validate(this._players[playerIdx]);
53
}
54
0 commit comments