Skip to content

Commit

Permalink
exclude wasm DAs when necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
Weakky committed Dec 8, 2023
1 parent b6ce565 commit d6bda8e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,11 @@ mod string {
}
}

#[test_suite(schema(schema), only(Postgres))]
// Napi & Wasm DAs excluded because of a bytes bug
#[test_suite(
schema(schema),
only(Postgres("9", "10", "11", "12", "13", "14", "15", "pg.js", "neon.js"))
)]
mod others {
fn schema_other_types() -> String {
let schema = indoc! {
Expand Down

0 comments on commit d6bda8e

Please sign in to comment.