viewpoint-test-macros 0.2.13

Procedural macros for Viewpoint test framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Test: scope = "browser" without browser parameter should produce compile error

use viewpoint_test_macros::test;

// This should fail to compile: scope = "browser" requires browser = "..."
#[test(scope = "browser")]
async fn test_missing_browser_source(page: viewpoint_core::Page) {
    let _ = page;
}

fn main() {}