Skip to content

Commit

Permalink
add smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
janmasrovira committed Dec 5, 2024
1 parent c15ca0e commit 6bf17d9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/smoke/Commands/format.smoke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,22 @@ tests:
stderr: ''
exit-status: 1

- name: format-project-package-dot-juvix
command:
shell:
- bash
script: |
temp=$(mktemp -d)
trap 'rm -rf -- "$temp"' EXIT
cd $temp
juvix init
echo "" >> Package.juvix
juvix format
stderr: ''
stdout:
contains: 'Package.juvix'
exit-status: 1

- name: format-project-containing-unformatted-from-subdir
command:
shell:
Expand Down

0 comments on commit 6bf17d9

Please sign in to comment.