Skip to content

Commit

Permalink
fix: defaults exporting
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Feb 12, 2022
1 parent dca5b9a commit 4e8bda3
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions packages/vitest/src/index.ts
@@ -1,13 +1,10 @@
import type {
Plugin as PrettyFormatPlugin,
} from 'pretty-format'
import type { Plugin as PrettyFormatPlugin } from 'pretty-format'
import type { Any, Anything } from './integrations/chai/jest-asymmetric-matchers'
import type { MatcherState, MatchersObject } from './integrations/chai/types'
import type { Constructable, InlineConfig } from './types'

type VitestInlineConfig = InlineConfig

export { suite, test, describe, it } from './runtime/suite'

export * from './runtime/hooks'
export * from './integrations/chai'
export * from './integrations/jest-mock'
Expand All @@ -16,7 +13,9 @@ export * from './integrations/vi'
export * from './types'
export * from './api/types'

export { configDefaults } from './constants'
export { configDefaults } from './defaults'

type VitestInlineConfig = InlineConfig

declare module 'vite' {
interface UserConfig {
Expand Down

0 comments on commit 4e8bda3

Please sign in to comment.