mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-24 08:58:12 +08:00
Add metadata (#45)
* Add wasm-pack metadata * Add Wasm tests directory * Add basic Cargo manifest metadata * Make web frontend unpublishable to npm
This commit is contained in:
committed by
Keavon Chambers
parent
e58f314527
commit
2f2bbb3a8b
@@ -0,0 +1,10 @@
|
||||
#![cfg(target_arch = "wasm32")]
|
||||
|
||||
use wasm_bindgen_test::*;
|
||||
|
||||
wasm_bindgen_test_configure!(run_in_browser);
|
||||
|
||||
#[wasm_bindgen_test]
|
||||
fn pass() {
|
||||
assert_eq!(1 + 1, 2);
|
||||
}
|
||||
Reference in New Issue
Block a user