-
Type: Improvement
-
Resolution: Duplicate
-
Priority: Major - P3
-
None
-
Affects Version/s: None
-
Component/s: None
-
None
-
Server Tooling & Methods
Thanks to the new BF process that is currently in pilot, there may be some increased need in the near future to be able to easily disable tests. Currently there are some idiomatic ways to exit early, e.g.
const disabled = true; if (disabled) { return; }
But these don't work uniformly for all suites. Some require more involved changes (e.g. FSM). In all such cases, the test still "runs", it just doesn't do anything.
It would be nice to have a simple and uniform way across suites to quickly disable a test until a fix can be made. A proposed solution would be something like a `test_disabled` tag.
- duplicates
-
SERVER-33853 Define a new test tag to temporarily disable a test
- Closed