mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 09:54:41 -05:00
chore: add comment explaining annotation
This commit is contained in:
@@ -1,4 +1,17 @@
|
||||
#![cfg(feature = "browser")]
|
||||
// The trybuild output has slightly different error message ouptut for
|
||||
// different combinations of features. Since tests are run with `test-all-features`
|
||||
// multiple combinations of features are tested. This ensures this file is only
|
||||
// run when **only** the browser feature is enabled.
|
||||
#![cfg(all(
|
||||
feature = "browser",
|
||||
not(any(
|
||||
feature = "postcard",
|
||||
feature = "multipart",
|
||||
feature = "serde-lite",
|
||||
feature = "cbor",
|
||||
feature = "msgpack"
|
||||
))
|
||||
))]
|
||||
|
||||
#[test]
|
||||
fn aliased_results() {
|
||||
|
||||
Reference in New Issue
Block a user