mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 13:27:49 +08:00
ignoring infinite tests
This commit is contained in:
parent
dd6db81dd9
commit
f0687b8069
1 changed files with 2 additions and 2 deletions
|
@ -209,8 +209,8 @@ export async function start() {
|
|||
nextDelay: delay,
|
||||
});
|
||||
if (
|
||||
(Config.mode === "time" && Config.time < 130) ||
|
||||
(Config.mode === "words" && Config.words < 250)
|
||||
(Config.mode === "time" && Config.time < 130 && Config.time > 0) ||
|
||||
(Config.mode === "words" && Config.words < 250 && Config.words > 0)
|
||||
) {
|
||||
if (delay < interval / 2) {
|
||||
//slow timer
|
||||
|
|
Loading…
Reference in a new issue