You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Regex pattern to match error messages that should trigger a retry. Only errors matching this pattern will cause a retry (default: retry on all errors)
527
541
528
542
### diff.aAnnotation
529
543
@@ -798,6 +812,19 @@ Start Vitest without running tests. Tests will be running only on change. This o
798
812
799
813
Delete all Vitest caches, including `experimental.fsModuleCache`, without running any tests. This will reduce the performance in the subsequent test run.
800
814
815
+
### tagsFilter
816
+
817
+
-**CLI:**`--tagsFilter <expression>`
818
+
819
+
Run only tests with the specified tags. You can use logical operators `&&` (and), `||` (or) and `!` (not) to create complex expressions, see [Test Tags](/guide/test-tags#syntax) for more information.
820
+
821
+
### strictTags
822
+
823
+
-**CLI:**`--strictTags`
824
+
-**Config:**[strictTags](/config/stricttags)
825
+
826
+
Should Vitest throw an error if test has a tag that is not defined in the config. (default: `true`)
description: 'Delete all Vitest caches, including `experimental.fsModuleCache`, without running any tests. This will reduce the performance in the subsequent test run.',
790
790
},
791
791
tagsFilter: {
792
-
description: 'Run only tests with the specified tags. You can use logical operators `&&` (and), `||` (or) and `!` (not) to create complex expressions, see: https://vitest.dev/guide/test-tags#syntax for more information.',
792
+
description: 'Run only tests with the specified tags. You can use logical operators `&&` (and), `||` (or) and `!` (not) to create complex expressions, see [Test Tags](https://vitest.dev/guide/test-tags#syntax) for more information.',
0 commit comments