mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-10 06:52:49 +00:00
20 lines
445 B
Rust
20 lines
445 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'."
|
||
|
);
|
||
|
}
|