Skip to content
Snippets Groups Projects
Verified Commit f58e4eb1 authored by Michal Kucharczyk's avatar Michal Kucharczyk
Browse files

sc-chain-spec: testing

parent c54368a5
No related merge requests found
......@@ -1041,6 +1041,14 @@ mod tests {
.build();
let actual = output.as_json(false).unwrap();
let mut file = std::fs::OpenOptions::new()
.create(true)
.write(true)
.open("/tmp/default_genesis_config.json")
.unwrap();
use std::io::Write;
file.write_all(actual.clone().as_bytes()).unwrap();
let expected =
from_str::<Value>(include_str!("../res/substrate_test_runtime_from_named_patch.json"))
.unwrap();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment