#[presentar_test]Expand description
Test attribute for Presentar widget and integration tests.
§Attributes
fixture = "path"- Load a fixture tar file before the testtimeout = 5000- Set test timeout in millisecondsshould_panic- Expect the test to panicignore- Skip this test by default
§Example
ⓘ
#[presentar_test]
fn test_widget() {
// Test code
}
#[presentar_test(fixture = "app.tar", timeout = 10000)]
fn test_with_fixture() {
// Test with fixture
}