mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-25 19:11:45 +03:00
7ecf4aae87
Rustfmt all the things!
20 lines
446 B
Rust
20 lines
446 B
Rust
use wasm_bindgen::prelude::*;
|
|
use wasm_bindgen_test::*;
|
|
use web_sys::HtmlParagraphElement;
|
|
|
|
#[wasm_bindgen(module = "./tests/wasm/element.js")]
|
|
extern "C" {
|
|
fn new_paragraph() -> HtmlParagraphElement;
|
|
}
|
|
|
|
#[wasm_bindgen_test]
|
|
fn test_paragraph_element() {
|
|
let paragraph = new_paragraph();
|
|
paragraph.set_align("right");
|
|
assert_eq!(
|
|
paragraph.align(),
|
|
"right",
|
|
"Paragraph should be aligned 'right'."
|
|
);
|
|
}
|