15 lines
397 B
TypeScript
15 lines
397 B
TypeScript
import { describe, expect, it } from 'vitest'
|
|
import { createClient } from '../..'
|
|
|
|
describe('Client', () => {
|
|
it('should create a client', () => {
|
|
const params = { siteId: 'mysite', baseUrl: '/remark42' }
|
|
const client = createClient(params)
|
|
|
|
expect(client).toBeDefined()
|
|
expect(client.admin).toBeDefined()
|
|
expect(client.auth).toBeDefined()
|
|
expect(client.public).toBeDefined()
|
|
})
|
|
})
|