smplx-std 0.0.5

A blazingly-fast, ux-first simplicity development framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
const SLOW_TEST_ENV: &str = "RUN_UI_TESTS";

#[test]
fn ui() {
    if std::env::var(SLOW_TEST_ENV).is_err() {
        eprintln!("Set '{SLOW_TEST_ENV}' to true in order to run a test");
        return;
    }

    let tests = trybuild::TestCases::new();
    tests.pass("tests/ui/*.rs");
}