Skip to content

Commit

Permalink
always use polling
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Aug 18, 2021
1 parent ea1d894 commit 281875d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run-tests.js
Expand Up @@ -257,7 +257,7 @@ async function main() {
for (let i = 0; i < NUM_RETRIES + 1; i++) {
try {
console.log(`Starting ${test} retry ${i}/${NUM_RETRIES}`)
const time = await runTest(test, i > 0)
const time = await runTest(test, true)
timings.push({
file: test,
time,
Expand Down Expand Up @@ -306,7 +306,7 @@ async function main() {
for (let i = 0; i < NUM_RETRIES + 1; i++) {
try {
console.log(`Starting ${test} retry ${i}/${NUM_RETRIES}`)
const time = await runTest(test, i > 0)
const time = await runTest(test, true)
timings.push({
file: test,
time,
Expand Down

0 comments on commit 281875d

Please sign in to comment.