Skip to content

Commit

Permalink
test fails due to unclean git state on pop new parachain
Browse files Browse the repository at this point in the history
  • Loading branch information
weezy20 committed Mar 18, 2024
1 parent 33c2a95 commit 3c55dac
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/add.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,17 @@ use assert_cmd::Command;
use std::fs;
use tempdir::TempDir;

#[ignore = "test fails to run"]
#[ignore = "test fails due to no git commit on `pop new parachain`"]
#[test]
fn add_parachain_pallet_template() {
let temp_dir = TempDir::new("add-pallet-test").unwrap();
// Setup new parachain
Command::cargo_bin("pop")
.unwrap()
.current_dir(&temp_dir)
.args(&["new", "parachain", "testchain"])
.assert()
.success();

println!("{:?}", temp_dir.path().display());
.success();
// Add pallet-parachain-template
Command::cargo_bin("pop")
.unwrap()
Expand Down

0 comments on commit 3c55dac

Please sign in to comment.