#![allow(
clippy::expect_used,
clippy::unwrap_used,
clippy::panic,
clippy::missing_panics_doc
)]
use llm_browser_testkit::browser_test;
use llm_browser_testkit::browser_test_inline;
browser_test!(smoke_from_file => "examples/smoke.toml");
browser_test_inline!(
smoke_inline,
r#"
[config]
base_url = "https://example.com"
start_url = "/"
[[definitions]]
name = "no_errors"
preset = "no_error_on_page"
[[test]]
name = "homepage"
[[test.steps]]
kind = "navigate"
url = "/"
[[test.steps]]
kind = "assert"
definition = "no_errors"
"#
);
#[test]
fn macros_are_exported() {
}