1
0
mirror of https://github.com/jbranchaud/til synced 2026-07-03 08:08:24 +00:00

Fix typo in old mise TIL

This commit is contained in:
jbranchaud
2026-03-07 17:03:44 -06:00
parent f2a6fddba8
commit 16ad6bd64d
@@ -1,8 +1,7 @@
# Create Umbrella Task For All Test Tasks
When I was first sketching out the [`mise`
tasks](https://mise.jdx.dev/tasks/running-tasks.html) for a Rails app, I added
the following two tasks. One is for running all the `rspec` tests. The Other is
When I was first sketching out the [`mise` tasks](https://mise.jdx.dev/tasks/running-tasks.html) for a Rails app, I added
the following two tasks. One is for running all the `rspec` tests. The other is
for running all the `vitest` (JavaScript) tests.
```toml
@@ -49,5 +48,4 @@ Running `mise run test:all` won't execute its own command, but because it
depends on all other `test:*` tasks, the tests will get run through those
dependencies.
This task naming pattern also allows for calling all tests with `mise run
"test:**"`.
This task naming pattern also allows for calling all tests with `mise run "test:**"`.