1
0
mirror of synced 2024-11-21 20:16:03 +03:00
mg-bot-api-client-js/tests/test_index.js
Akolzin Dmitry e71a9ab7e3 JSDoc
2019-03-06 14:03:41 +03:00

26 lines
715 B
JavaScript

import chai from 'chai'
import MgBotApiClient from '../index'
describe('#Constructor', function () {
it('Empty url', function () {
chai.expect(function() {
new MgBotApiClient({token: 'test_token'});
}).to.throw('Url is required');
});
it('Incorrect url', function () {
chai.expect(function() {
new MgBotApiClient({
host: 'http://api.example.com',
token: 'test_token'
});
}).to.throw('HTTPS required');
});
it('Empty token', function () {
chai.expect(function() {
new MgBotApiClient({host: 'https://api.example.com'});
}).to.throw('Token is required');
});
});