unmind-athena-client
Version:
a nodejs simple aws athena client
16 lines (14 loc) • 380 B
text/typescript
import * as assert from 'assert'
import athena from '../index'
describe('Array', () => {
describe('#createClient import defalut()', () => {
it('should return athenaClient', (done: any) => {
const client = athena.createClient(
{ bucketUri: 's3://xxxx' },
{ region: 'xxxx' },
)
assert.notEqual(client, undefined)
done()
})
})
})