Skip to content

Commit

Permalink
fix(ls): fix missing ls command
Browse files Browse the repository at this point in the history
  • Loading branch information
turboBasic committed Sep 27, 2024
1 parent d05a530 commit a3347ce
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/ls.zunit
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env zunit

@setup {
typeset -gx HOME="$zi_test_dir"
typeset -gx ZBIN="$zi_test_dir/polaris/bin"
}

@test 'help' {
run zinit help
assert $state equals 0
}

@test 'ls' {
run zinit ls
assert $state equals 0
}

0 comments on commit a3347ce

Please sign in to comment.