Add frontend tests and other stuff
[recipes.git] / frontend / tests / web.rs
1 //! Test suite for the Web and headless browsers.
2
3 #![cfg(target_arch = "wasm32")]
4
5 extern crate wasm_bindgen_test;
6 use wasm_bindgen_test::*;
7
8 wasm_bindgen_test_configure!(run_in_browser);
9
10 #[wasm_bindgen_test]
11 fn pass() {
12 assert_eq!(1 + 1, 2);
13 }