mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
9 lines
157 B
TypeScript
9 lines
157 B
TypeScript
import { test } from 'vitest'
|
|
|
|
const myTest = test.extend({ a: 1 })
|
|
|
|
// eslint-disable-next-line unused-imports/no-unused-vars
|
|
myTest('', (context) => {
|
|
|
|
})
|