mtcute/e2e/node/ts/tests/packaging/base-client.ts

25 lines
671 B
TypeScript
Raw Normal View History

import { BaseTelegramClient } from '@mtcute/core/client.js'
import { expect } from 'chai'
import { describe, it } from 'mocha'
// @fix-import
import { getApiParams } from '../../utils'
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)
})
})