···5566# Migration Guide
7788+## Migrating to Vitest 4.0 {#vitest-4}
99+1010+### Removed `reporters: 'basic'`
1111+1212+Basic reporter is removed as it is equal to:
1313+1414+```ts
1515+export default defineConfig({
1616+ test: {
1717+ reporters: [
1818+ ['default', { summary: false }]
1919+ ]
2020+ }
2121+})
2222+```
2323+824## Migrating to Vitest 3.0 {#vitest-3}
9251026### Test Options as a Third Argument
+1-30
docs/guide/reporters.md
···141141 Duration 1.26s (transform 35ms, setup 1ms, collect 90ms, tests 1.47s, environment 0ms, prepare 267ms)
142142```
143143144144-### Basic Reporter
145145-146146-The `basic` reporter is equivalent to `default` reporter without `summary`.
147147-148148-:::code-group
149149-```bash [CLI]
150150-npx vitest --reporter=basic
151151-```
152152-153153-```ts [vitest.config.ts]
154154-export default defineConfig({
155155- test: {
156156- reporters: ['basic']
157157- },
158158-})
159159-```
160160-:::
161161-162162-Example output using basic reporter:
163163-```bash
164164-✓ __tests__/file1.test.ts (2) 725ms
165165-✓ __tests__/file2.test.ts (2) 746ms
166166-167167- Test Files 2 passed (2)
168168- Tests 4 passed (4)
169169- Start at 12:34:32
170170- Duration 1.26s (transform 35ms, setup 1ms, collect 90ms, tests 1.47s, environment 0ms, prepare 267ms)
171171-```
172172-173144### Verbose Reporter
174145175146Verbose reporter is same as `default` reporter, but it also displays each individual test after the suite has finished. It also displays currently running tests that are taking longer than [`slowTestThreshold`](/config/#slowtestthreshold). Similar to `default` reporter, you can disable the summary by configuring the reporter.
···228199229200### Dot Reporter
230201231231-Prints a single dot for each completed test to provide minimal output while still showing all tests that have run. Details are only provided for failed tests, along with the `basic` reporter summary for the suite.
202202+Prints a single dot for each completed test to provide minimal output while still showing all tests that have run. Details are only provided for failed tests, along with the summary for the suite.
232203233204:::code-group
234205```bash [CLI]