From 0092dbf304d2b271cf2fdafde0967c04a8b26b94 Mon Sep 17 00:00:00 2001 From: Sunny Chung Date: Sun, 14 Apr 2024 18:51:17 +0800 Subject: [PATCH] fix test --- doc/usermanual/Creating Library Modules.adoc | 2 +- stdlib/build.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/usermanual/Creating Library Modules.adoc b/doc/usermanual/Creating Library Modules.adoc index f9214ea..108a013 100644 --- a/doc/usermanual/Creating Library Modules.adoc +++ b/doc/usermanual/Creating Library Modules.adoc @@ -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"] |=== diff --git a/stdlib/build.gradle.kts b/stdlib/build.gradle.kts index 976f711..457357f 100644 --- a/stdlib/build.gradle.kts +++ b/stdlib/build.gradle.kts @@ -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 } } }