Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/wasm32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ fn test_decompress_lzma() {
lzma::decompress_lzma();
}

// time needs the wasm-bindgen feature
// or you get the error
// time not implemented on this platform
// The end_to_end tests depend on a time implementation (e.g. the `time` crate or similar)
// that must be compiled with its `wasm-bindgen` feature when targeting `wasm32`.
// Without that feature enabled, running these tests will fail with "time not implemented on this platform".
mod end_to_end;
#[wasm_bindgen_test]
fn test_end_to_end() {
Expand Down