mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-24 18:43:33 +03:00
Change assert to assert.ok to fix test
This commit is contained in:
parent
260183a522
commit
9f3722bbd9
@ -22,8 +22,8 @@ fn is_integer() {
|
||||
import * as wasm from "./out";
|
||||
|
||||
export function test() {
|
||||
assert(wasm.is_integer(123));
|
||||
assert(!wasm.is_integer(123.45));
|
||||
assert.ok(wasm.is_integer(123));
|
||||
assert.ok(!wasm.is_integer(123.45));
|
||||
}
|
||||
"#)
|
||||
.test()
|
||||
|
Loading…
Reference in New Issue
Block a user