1
0
mirror of synced 2024-11-21 20:16:03 +03:00
mg-bot-api-client-js/tests/test_request.js

15 lines
372 B
JavaScript
Raw Permalink Normal View History

2019-03-01 13:46:30 +03:00
import chai from 'chai'
import Request from '../lib/request'
2019-02-08 13:31:38 +03:00
describe('#Request', function () {
2019-03-01 13:46:30 +03:00
let req = new Request({
2019-02-08 13:31:38 +03:00
host: 'http://api.example.com',
token: 'test_token'
});
it('Request parameters', function () {
chai.expect(req._host).to.equal('api.example.com');
chai.expect(req._token).to.equal('test_token');
})
});