Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Jul 7, 2024
1 parent a76c137 commit da13db2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ starbase_events = "0.6.2"
starbase_sandbox = "0.6.4"
starbase_shell = "0.5.0"
starbase_styles = { version = "0.4.1", features = ["relative-path"] }
starbase_utils = { version = "0.8.1", default-features = false, features = [
starbase_utils = { version = "0.8.2", default-features = false, features = [
"editor-config",
"glob",
"json",
Expand Down
14 changes: 7 additions & 7 deletions crates/config/tests/toolchain_config_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ node:
assert_eq!(
config.node.unwrap().plugin.unwrap(),
PluginLocator::Url {
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.11.3/node_plugin.wasm".into()
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.11.4/node_plugin.wasm".into()
}
);
}
Expand Down Expand Up @@ -594,7 +594,7 @@ node:
assert_eq!(
config.node.unwrap().npm.plugin.unwrap(),
PluginLocator::Url {
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.11.3/node_depman_plugin.wasm".into()
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.11.4/node_depman_plugin.wasm".into()
}
);
}
Expand Down Expand Up @@ -686,7 +686,7 @@ node:
assert_eq!(
config.node.unwrap().pnpm.unwrap().plugin.unwrap(),
PluginLocator::Url {
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.11.3/node_depman_plugin.wasm".into()
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.11.4/node_depman_plugin.wasm".into()
}
);
}
Expand All @@ -710,7 +710,7 @@ node:
assert_eq!(
config.node.unwrap().pnpm.unwrap().plugin.unwrap(),
PluginLocator::Url {
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.11.3/node_depman_plugin.wasm".into()
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.11.4/node_depman_plugin.wasm".into()
}
);
}
Expand Down Expand Up @@ -812,7 +812,7 @@ node:
assert_eq!(
config.node.unwrap().yarn.unwrap().plugin.unwrap(),
PluginLocator::Url {
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.11.3/node_depman_plugin.wasm".into()
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.11.4/node_depman_plugin.wasm".into()
}
);
}
Expand All @@ -836,7 +836,7 @@ node:
assert_eq!(
config.node.unwrap().yarn.unwrap().plugin.unwrap(),
PluginLocator::Url {
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.11.3/node_depman_plugin.wasm".into()
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.11.4/node_depman_plugin.wasm".into()
}
);
}
Expand Down Expand Up @@ -1171,7 +1171,7 @@ rust:
assert_eq!(
config.rust.unwrap().plugin.unwrap(),
PluginLocator::Url {
url: "https://github.com/moonrepo/rust-plugin/releases/download/v0.10.4/rust_plugin.wasm".into()
url: "https://github.com/moonrepo/rust-plugin/releases/download/v0.10.5/rust_plugin.wasm".into()
}
);
}
Expand Down

0 comments on commit da13db2

Please sign in to comment.