Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
sunny-chung committed Apr 14, 2024
1 parent 0f25ac1 commit 0092dbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/usermanual/Creating Library Modules.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ CAUTION: If there is untrusted user input, this approach is vulnerable to https:

=== Unwrapping Kotlite `RuntimeValue` to a Kotlin value

It is relatively easy. Just cast the type and call the member property `.value`.
It is relatively easy. Just cast to the right type and call the member property `.value`.

[cols="20,80a"]
|===
Expand Down
4 changes: 2 additions & 2 deletions stdlib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ kotlin {
}
testTask {
useMocha {
timeout = "11s"
timeout = "21s" // github mac runner is slow
}
}
}
nodejs {
testTask {
useMocha {
timeout = "11s"
timeout = "21s" // github mac runner is slow
}
}
}
Expand Down

0 comments on commit 0092dbf

Please sign in to comment.