diff --git a/toolkit.nu b/toolkit.nu new file mode 100644 index 00000000..56a94611 --- /dev/null +++ b/toolkit.nu @@ -0,0 +1,15 @@ +# run the tests of the `nu-git-manager` package +# +# > **Important** +# > the `toolkit test` command requires [Nupm](https://github.com/nushell/nupm) to be installed +export def "test" [ + --verbose # show the output of each tests +] { + use nupm + + if $verbose { + nupm test --show-stdout + } else { + nupm test + } +}