Minor. Ignore tests on WASM

This commit is contained in:
Ilmir Usmanov
2021-03-15 06:14:10 +01:00
parent 149064803d
commit c9f41a2440
2 changed files with 2 additions and 0 deletions
@@ -1,5 +1,6 @@
// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
// IGNORE_BACKEND: WASM
inline class Result<T>(val isSuccess: Boolean)
@@ -1,6 +1,7 @@
// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
// IGNORE_BACKEND: JVM
// IGNORE_BACKEND: WASM
fun interface ResultHandler<T> {
fun onResult(result: Result<T>)