mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 15:07:59 +00:00
12 lines
274 B
Rust
12 lines
274 B
Rust
use std::env;
|
|
|
|
#[rustversion::attr(not(stable), ignore)]
|
|
#[test]
|
|
fn ui() {
|
|
// As trybuild is using `cargo check`, we don't need the real WASM binaries.
|
|
env::set_var("BUILD_DUMMY_WASM_BINARY", "1");
|
|
|
|
let t = trybuild::TestCases::new();
|
|
t.compile_fail("tests/ui/*.rs");
|
|
}
|