Elina

Results 255 comments of Elina

I've been playing around with testing without wasm-pack in https://github.com/yewstack/yew/pull/2528. `trunk test` command could simply do the following: - ensure `wasm-bindgen-cli` is there - pull geckodriver/chromedriver/safaridriver (as per https://rustwasm.github.io/wasm-bindgen/wasm-bindgen-test/browsers.html#configuring-which-browser-is-used-1) -...

I took a shot at implementing it but there's design discussion left to be done: - How will we ensure that `.cargo/config.toml` is preset and properly setup? Do we just...

I've used `rollup` to bundle library and call it from `wasm_bindgen` (see [`material-yew`](https://github.com/hamza1311/material-yew/)). Rollup and webpack are the major two bundlers in JS world. Webpack doesn't work well `wasm-bindgen` out...

[This action](https://github.com/jetli/trunk-action) exists so we can probably use that.

> I think this might make sense as an upgrade of the [handlebars templating example](https://github.com/seanmonstar/warp/blob/master/examples/handlebars_template.rs) what do you think? Handlebars is templates which renders the markup on server so I...

Another possible use case would be to return `index.html` for non-API routes (necessary while serving Single Page Applications). For example: ```rust warp::path!("api" / ..).negate(|_| warp::reject()).and(warp::fs::file("index.html")) ```

This is because you're trying to run your app in a non-wasm environment. Remember, `cargo run` is not used to run a wasm app. Depending upon what your app is,...

You should be able set the timeout via `webdriver.json` file. See [documentation](https://rustwasm.github.io/wasm-bindgen/wasm-bindgen-test/browsers.html#configuring-headless-browser-capabilities).

@alexcrichton I just found this issue from [this message on rust-lang discord](https://discord.com/channels/442252698964721669/443151097398296587/944689635274153996). I would be happy to lend a hand in maintaining tools. I've been working in other parts of...

Great, I'll go through PRs and see what I can review and approve them. I'll let you know when a PR is ready to be merged