Skip to content

Commit

Permalink
chore: test exports
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom committed Jun 3, 2024
1 parent f273216 commit b8a7689
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/exports/index.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { expect, test } from 'vitest'
import * as exports from './index.js'

test('exports', () => {
expect(Object.keys(exports)).toMatchInlineSnapshot(`
[
"defineInstance",
"definePool",
]
`)
})
10 changes: 10 additions & 0 deletions src/exports/instances.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { expect, test } from 'vitest'
import * as exports from './instances.js'

test('exports', () => {
expect(Object.keys(exports)).toMatchInlineSnapshot(`
[
"anvil",
]
`)
})

0 comments on commit b8a7689

Please sign in to comment.