-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db4ba4a
commit 132d323
Showing
2 changed files
with
23 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,25 @@ | ||
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html | ||
|
||
exports[`createServer 1`] = ` | ||
{ | ||
"exitCode": 0, | ||
"stderr": "", | ||
"stdout": " ► Running task export... | ||
► ✓ Task export exited with code 0 | ||
► Running task print... | ||
exported FOO=bar | ||
► ✓ Task print exited with code 0 | ||
", | ||
} | ||
"{ | ||
\\"exitCode\\": 0, | ||
\\"stdout\\": \\" ► Running task export...\\\\n ► ✓ Task export exited with code 0\\\\n ► Running task print...\\\\nexported FOO=bar\\\\r\\\\n ► ✓ Task print exited with code 0\\\\n\\", | ||
\\"stderr\\": \\"\\" | ||
}" | ||
`; | ||
|
||
exports[`run 1`] = ` | ||
{ | ||
"exitCode": 0, | ||
"stderr": "", | ||
"stdout": "Hello World | ||
", | ||
} | ||
"{ | ||
\\"exitCode\\": 0, | ||
\\"stdout\\": \\"Hello World\\\\r\\\\n\\", | ||
\\"stderr\\": \\"\\" | ||
}" | ||
`; | ||
|
||
exports[`run 2`] = ` | ||
{ | ||
"exitCode": 1, | ||
"stderr": "", | ||
"stdout": "exit | ||
failed to run command \\"fail\\": exit code: 1 | ||
", | ||
} | ||
"{ | ||
\\"exitCode\\": 1, | ||
\\"stdout\\": \\"failed to run command \\\\\\"fail\\\\\\": exit code: 1\\\\n\\", | ||
\\"stderr\\": \\"\\" | ||
}" | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters