Spxg
Spxg
Could we add an `aws-lc-rs` feature? Currently, the `_doc` feature is available, but it's for internal use only.
I found a problem when implementing synchronous IDBMirrorVFS. When I used 64k page_size for stress testing (page_size is probably irrelevant to the problem), the database would be corrupted when the...
> Are you also using the FTS5 extension? I don't use FTS5, can reproduce it using the demo web. Could it be that the reason here is that under the...
There is a text overlapping issue when running in `run_in_shared_worker` and `run_in_dedicated_worker`.
> Is that a change required in this PR further Yes, I apologize for not being clear, it's the test output issue in `run_in_*_worker` mode caused by this PR. ```sh...
```rust #[cfg(test)] mod tests { use wasm_bindgen_test::console_log; wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_dedicated_worker); #[wasm_bindgen_test::wasm_bindgen_test] fn test() { console_log!("hello"); } } ``` ``` Running headless tests in Chrome on `http://127.0.0.1:44889/` Try find `webdriver.json` for configure browser's...
```rust #[cfg(test)] mod tests { use wasm_bindgen_test::console_log; wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_dedicated_worker); #[wasm_bindgen_test::wasm_bindgen_test] fn test() { console_log!("hello"); } } ``` ```sh NO_HEADLESS=1 cargo test --target wasm32-unknown-unknown ``` Run with headless miss "hello" output.
> If I understand correctly, we don't expect the log in case X, as it's considered too noisy > Run with headless miss "hello" output. Sorry, I said it wrong....what...
```rust #[cfg(test)] mod tests { use wasm_bindgen_test::console_log; wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_dedicated_worker); #[wasm_bindgen_test::wasm_bindgen_test] fn test() { console_log!("hello"); } } ``` ``` Running headless tests in Chrome on `http://127.0.0.1:37409/` Try find `webdriver.json` for configure browser's...
> using a WASM module file processed by `wasm-opt` version 116. Do you mean to process it through wasm-opt first and then use wasm-bindgen? This order may cause problems