Skip to content

Commit

Permalink
qe-wasm: Unskip raw queries tests
Browse files Browse the repository at this point in the history
Needs #4648 to be merged into main before, but all raw queries isses
are already fixed either by me or Alberto, so we have to just unskip the
tests.

Close prisma/team-orm#659
  • Loading branch information
Sergey Tatarintsev committed Jan 18, 2024
1 parent 9c3f205 commit 269e4ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mod input_coercion {
use query_engine_tests::fmt_execute_raw;

// Checks that query raw inputs are coerced to the correct types
#[connector_test(only(Postgres), exclude(Postgres("pg.js.wasm", "neon.js.wasm"),))]
#[connector_test(only(Postgres))]
async fn scalar_input_correctly_coerced(runner: Runner) -> TestResult<()> {
run_query!(
&runner,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ use query_engine_tests::*;
mod null_list {
use query_engine_tests::{fmt_query_raw, run_query, run_query_pretty};

#[connector_test(
schema(common_list_types),
only(Postgres),
exclude(Postgres("pg.js.wasm", "neon.js.wasm"),)
)]
#[connector_test(schema(common_list_types), only(Postgres))]
async fn null_scalar_lists(runner: Runner) -> TestResult<()> {
run_query!(
&runner,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ mod typed_output {
schema.to_owned()
}

#[connector_test(schema(schema_pg), only(Postgres), exclude(Postgres("pg.js.wasm", "neon.js.wasm")))]
#[connector_test(schema(schema_pg), only(Postgres))]
async fn all_scalars_pg(runner: Runner) -> TestResult<()> {
create_row(
&runner,
Expand Down

0 comments on commit 269e4ee

Please sign in to comment.