File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -60,4 +60,5 @@ wasm-bindgen = "0.2.87"
60
60
wasm-bindgen-futures = " 0.4.40"
61
61
62
62
[dev-dependencies ]
63
- wasm-bindgen-test = " 0.3"
63
+ tokio = { workspace = true }
64
+ wasm-bindgen-test = " 0.3.44"
Original file line number Diff line number Diff line change @@ -87,13 +87,14 @@ mod test {
87
87
88
88
wasm_bindgen_test:: wasm_bindgen_test_configure!( run_in_browser) ;
89
89
90
- #[ wasm_bindgen_test]
90
+ #[ cfg_attr( target_arch = "wasm32" , wasm_bindgen_test) ]
91
+ #[ cfg_attr( not( target_arch = "wasm32" ) , allow( dead_code) ) ]
91
92
fn datafusion_test ( ) {
92
93
basic_exprs ( ) ;
93
94
basic_parse ( ) ;
94
95
}
95
96
96
- #[ wasm_bindgen_test]
97
+ #[ wasm_bindgen_test( unsupported = tokio :: test ) ]
97
98
async fn basic_execute ( ) {
98
99
let sql = "SELECT 2 + 2;" ;
99
100
You can’t perform that action at this time.
0 commit comments