fix: make sure tests have a command to execute

This commit is contained in:
Kasper Juul Hermansen 2023-03-13 20:59:25 +01:00 committed by Kasper Juul Hermansen
parent 5593fce2e1
commit 1bfd084cd2

View File

@ -13,6 +13,7 @@ async fn test_issue_30_alt() -> eyre::Result<()> {
platform: Some(platform.to_string().into()),
})
.from("alpine")
.with_exec(vec!["echo", "'hello'"])
.exit_code()
.await?;
@ -35,6 +36,7 @@ async fn test_issue_30() -> eyre::Result<()> {
.unwrap(),
)
.from("alpine")
.with_exec(vec!["echo", "'hello'"])
.exit_code()
.await?;