Skip to content

Commit 87f6f73

Browse files
committed
Docs(test[smoke]): Add docs-site smoke check
why: Ensure the site test target has at least one passing test. what: - Add a minimal vitest smoke test for the docs workspace
1 parent 63a6572 commit 87f6f73

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { buildApiPackage } from '@libtmux/api-model'
2+
import { describe, expect, it } from 'vitest'
3+
4+
describe('docs site', () => {
5+
it('references core api model helpers', () => {
6+
expect(typeof buildApiPackage).toBe('function')
7+
})
8+
})

0 commit comments

Comments
 (0)