Add a stub test module for when we have webidl tests

This commit is contained in:
Nick Fitzgerald 2018-05-25 15:47:40 -07:00
parent 3369498dca
commit daabbbd06e
3 changed files with 7 additions and 1 deletions

View File

@ -383,3 +383,4 @@ mod structural;
mod non_wasm;
mod u64;
mod char;
mod webidl;

1
tests/all/webidl/mod.rs Normal file
View File

@ -0,0 +1 @@
mod simple;

View File

@ -0,0 +1,4 @@
#[test]
fn webidl() {
assert!(true);
}