Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

Commit

Permalink
fix: make sure tests have a command to execute
Browse files Browse the repository at this point in the history
  • Loading branch information
kjuulh committed Mar 13, 2023
1 parent 5593fce commit 1bfd084
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/dagger-sdk/tests/issues/iss_30.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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?;

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

Expand Down

0 comments on commit 1bfd084

Please sign in to comment.