Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions skainet-lang/skainet-lang-models/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
Expand All @@ -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"
}
}
}
Expand Down
Loading