We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 93daccc + 374bb27 commit c360730Copy full SHA for c360730
.travis.yml
@@ -0,0 +1,12 @@
1
+language: rust
2
+rust:
3
+ - nightly
4
+os:
5
+ - linux
6
+ - osx
7
+ - windows
8
+before_script:
9
+ - rustup target add wasm32-unknown-unknown
10
+ - cargo install wasm-bindgen-cli
11
+script:
12
+ - cargo build --tests --target wasm32-unknown-unknown
src/vdom.rs
@@ -521,7 +521,8 @@ pub mod tests {
521
use super::*;
522
523
use crate as seed; // required for macros to work.
524
- use crate::dom_types::{UpdateListener, UpdateEl};
+ use crate::dom_types::{UpdateEl};
525
+ use crate::{div,li};
526
527
fn make_doc() -> web_sys::Document {
528
let window = web_sys::window().unwrap();
0 commit comments