0.5.1-pre.006
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
// file: ks-pipeline/src/spl_token_stateful.rs
|
||||
// version: 5
|
||||
// version: 6
|
||||
|
||||
//! Stateful Localnet and Devnet readiness checks for classic SPL Token operations.
|
||||
|
||||
@@ -1439,11 +1439,12 @@ mod tests {
|
||||
}
|
||||
|
||||
fn local_devnet_profile() -> ks_config::ProfileConfig {
|
||||
let config =
|
||||
match ks_config::parse_config_json(include_str!("../../config/app.config.json")) {
|
||||
std::result::Result::Ok(value) => value,
|
||||
std::result::Result::Err(error) => panic!("example config parse failed: {error}"),
|
||||
};
|
||||
let config = match ks_config::parse_config_json(include_str!(
|
||||
"../../test-fixtures/config/resolved.app.config.json"
|
||||
)) {
|
||||
std::result::Result::Ok(value) => value,
|
||||
std::result::Result::Err(error) => panic!("example config parse failed: {error}"),
|
||||
};
|
||||
for profile in config.profiles {
|
||||
if profile.name == "local_devnet" {
|
||||
return profile;
|
||||
|
||||
Reference in New Issue
Block a user