Skip to content

Commit

Permalink
Fix CI (#3712)
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda committed Nov 20, 2023
1 parent 45039ff commit bb12058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cli/src/bin/wasm-bindgen-test-runner/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ pub fn spawn(
));

let worker_js_path = tmpdir.join("worker.js");
fs::write(&worker_js_path, worker_script).context("failed to write JS file")?;
fs::write(worker_js_path, worker_script).context("failed to write JS file")?;

js_to_execute.push_str(&format!(
r#"
Expand Down

0 comments on commit bb12058

Please sign in to comment.