diff --git a/skainet-lang/skainet-lang-models/build.gradle.kts b/skainet-lang/skainet-lang-models/build.gradle.kts index 49b96ab9..0021c82a 100644 --- a/skainet-lang/skainet-lang-models/build.gradle.kts +++ b/skainet-lang/skainet-lang-models/build.gradle.kts @@ -34,7 +34,10 @@ kotlin { browser { testTask { useMocha { - timeout = "10s" + // Generous timeout: the micrograd moons demo trains a 200-epoch MLP, + // which is slow in a browser engine (especially wasmJs under CI/parallel + // load) and can exceed Mocha's 2s default before the computation finishes. + timeout = "60s" } } } @@ -45,7 +48,10 @@ kotlin { browser { testTask { useMocha { - timeout = "10s" + // Generous timeout: the micrograd moons demo trains a 200-epoch MLP, + // which is slow in a browser engine (especially wasmJs under CI/parallel + // load) and can exceed Mocha's 2s default before the computation finishes. + timeout = "60s" } } }