24 lines
647 B
JavaScript
24 lines
647 B
JavaScript
import { expect } from 'chai'
|
|
import { describe, it } from 'mocha'
|
|
|
|
import { BaseTelegramClient } from '@mtcute/core'
|
|
|
|
import { getApiParams } from '../utils.js'
|
|
|
|
describe('@mtcute/core', function () {
|
|
this.timeout(300_000)
|
|
|
|
it('connects to test DC and makes help.getNearestDc', async () => {
|
|
const tg = new BaseTelegramClient({
|
|
...getApiParams(),
|
|
})
|
|
|
|
await tg.connect()
|
|
const config = await tg.call({ _: 'help.getNearestDc' })
|
|
await tg.close()
|
|
|
|
expect(config).to.be.an('object')
|
|
expect(config._).to.equal('nearestDc')
|
|
expect(config.thisDc).to.equal(2)
|
|
})
|
|
})
|