mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 17:30:07 +00:00
* test(all): add test importing index * chore: remove old benchmark dir * chore: disable coverage status fail * test(client): add import test with try catch * test(rest): fix narrow import scope
8 lines
159 B
TypeScript
8 lines
159 B
TypeScript
import { describe, it } from 'mocha'
|
|
|
|
describe('index.ts', () => {
|
|
it('will import without error', async () => {
|
|
await import('../src/index.js')
|
|
})
|
|
})
|