Première version qui marche

This commit is contained in:
2020-10-08 00:17:08 +02:00
parent 48651421a2
commit 55c2e4a0c3
11 changed files with 841 additions and 1 deletions

13
tests/web.rs Normal file
View File

@@ -0,0 +1,13 @@
//! Test suite for the Web and headless browsers.
#![cfg(target_arch = "wasm32")]
extern crate wasm_bindgen_test;
use wasm_bindgen_test::*;
wasm_bindgen_test_configure!(run_in_browser);
#[wasm_bindgen_test]
fn pass() {
assert_eq!(1 + 1, 2);
}