Migrate to trybuild from compiletest

This migrates our UI tests to the recently published `trybuild` crate
which should hopefully be a bit more robust than `compiletest` over
time!
This commit is contained in:
Alex Crichton
2019-05-15 14:46:03 -07:00
parent 79dba40e61
commit 4cc730fc41
34 changed files with 189 additions and 283 deletions

View File

@ -1,7 +1,3 @@
#![crate_type = "rlib"]
extern crate wasm_bindgen;
use wasm_bindgen::prelude::*;
struct A;
@ -13,3 +9,5 @@ impl A {
pub fn foo() {
}
}
fn main() {}