botfriends-handover-nodejs
Version:
NodeJs wrapper for BOTfriends Handover Tool
15 lines (14 loc) • 358 B
text/typescript
import { HandoverClient } from '../../src/lib/sdk'
import { assert } from 'chai'
const jwt = ''
const backendUrl = ''
describe('Formats', () => {
it('Client should be instanciated', () => {
try {
new HandoverClient(jwt, backendUrl)
assert.ok('Client instanciated.')
} catch (err) {
assert.fail('Error thrown:', err)
}
})
})