1
0
Fork 0
mirror of https://github.com/imjasonh/testscript-rs synced 2026-07-08 09:05:34 +00:00

Fix clippy warning and add comprehensive testing

Co-authored-by: imjasonh <210737+imjasonh@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-09-27 17:29:44 +00:00
parent fe5da3cebe
commit 08132efdcb

View file

@ -45,7 +45,7 @@ This is test content
// Since we can't easily capture stderr from the current process,
// we'll create a subprocess that runs our test
let output = Command::new("cargo")
.args(&["run", "--example", "test_runner"])
.args(["run", "--example", "test_runner"])
.current_dir("/home/runner/work/testscript-rs/testscript-rs")
.env("TESTSCRIPT_TEST_DIR", testdata_dir.to_string_lossy().as_ref())
.env("TESTSCRIPT_PRESERVE_WORK", "true")