-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nodejs cargo test failing under 1.44 nightlies #287
Comments
Related upstream issue koute/cargo-web#243 |
I root caused this to the .wasm artifact that is generated now gets put under the /target/deps/ folder whereas previously it was just under /target/. This causes it to be explicitly filtered out by cargo-web as they do some modifications to the wasm as a post-process step. I'll report the details on cargo-web and see if I can put together a PR for a fix. For reference see cargo-web - src\build.rs:
|
@shanemadden do you want to close this now that @daboross or leave it open for when cargo web fixes the upstream issue? |
I prefer the latter, if only to keep a note of the problem. |
Builds have been failing for several days due to a test failure introduced with the rust 1.44 nightly builds - the
cargo web test --verbose --nodejs
step fails withthread 'main' panicked at 'internal error: no .js file found', .cargo/registry/src/github.com-1ecc6299db9ec823/cargo-web-0.6.26/src/cmd_test.rs:58:9
- seems like the js files are not being included in the build result artifacts, but I'm unsure if this is an issue in stdweb or rust itself - it doesn't seem likely to be our fault.I'm planning on putting a PR in to comment out that nodejs test for now, while leaving this issue open to track re-enabling that test when it's not failing in the nightly versions anymore.
The text was updated successfully, but these errors were encountered: