Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(test): remove another single quoted echo arg #6468

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "util",
"scripts": {
"build": "sleep 0.5 && echo building && sleep 1 && echo completed",
"fail": "echo 'failing'; exit 1"
"fail": "echo failing; exit 1"
}
}
8 changes: 4 additions & 4 deletions turborepo-tests/integration/tests/ordered/github.t
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ because otherwise prysk interprets them as multiline commands
done
::endgroup::
::group::util:build
cache bypass, force executing cfe3eddf195f551d
cache bypass, force executing ff1050c513839636

>\sbuild (re)
\>\ssleep 0.5 && echo building && sleep 1 && echo completed (re)
Expand All @@ -38,7 +38,7 @@ because otherwise prysk interprets them as multiline commands
\xe2\x80\xa2 Running build in 1 packages (esc)
\xe2\x80\xa2 Remote caching disabled (esc)
::group::util:build
util:build: cache bypass, force executing cfe3eddf195f551d
util:build: cache bypass, force executing ff1050c513839636
util:build:
util:build: > build
util:build: > sleep 0.5 && echo building && sleep 1 && echo completed
Expand All @@ -58,10 +58,10 @@ Verify that errors are grouped properly
\xe2\x80\xa2 Running fail in 2 packages (esc)
\xe2\x80\xa2 Remote caching disabled (esc)
::group::util:fail
cache miss, executing 35b693e4fd63546f
cache miss, executing 122cca10fdcda4f0

\> fail (re)
\> echo 'failing'; exit 1 (re)
\> echo failing; exit 1 (re)

failing
npm ERR! Lifecycle script `fail` failed with error:
Expand Down
Loading