From 16ad6bd64d4ca157d3602c643886959763c1be65 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sat, 7 Mar 2026 17:03:44 -0600 Subject: [PATCH] Fix typo in old mise TIL --- mise/create-umbrella-task-for-all-test-tasks.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/mise/create-umbrella-task-for-all-test-tasks.md b/mise/create-umbrella-task-for-all-test-tasks.md index 2f406a0..7a0f067 100644 --- a/mise/create-umbrella-task-for-all-test-tasks.md +++ b/mise/create-umbrella-task-for-all-test-tasks.md @@ -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:**"`.