Suggestion
Replace the current it('should ...') pattern with test(...) across all test files.
Reason
The it('should ...') style is a BDD convention carried over from Jasmine/Mocha. In Vitest (and Jest), test is the idiomatic default — it's what the official documentation uses in its examples. The should prefix is also redundant: a test description already implies an expectation, so the word adds ceremony without adding clarity.
Using test produces shorter, more direct descriptions and aligns with how modern Vitest projects are conventionally written.
Suggestion
Replace the current
it('should ...')pattern withtest(...)across all test files.Reason
The
it('should ...')style is a BDD convention carried over from Jasmine/Mocha. In Vitest (and Jest),testis the idiomatic default — it's what the official documentation uses in its examples. Theshouldprefix is also redundant: a test description already implies an expectation, so the word adds ceremony without adding clarity.Using
testproduces shorter, more direct descriptions and aligns with how modern Vitest projects are conventionally written.