Files
discord.js/packages/voice/__tests__/Secretbox.test.ts
2022-01-11 21:53:08 +01:00

9 lines
212 B
TypeScript

import { methods } from '../src/util/Secretbox';
jest.mock('tweetnacl');
test('Does not throw error with a package installed', () => {
// @ts-expect-error
expect(() => methods.open()).not.toThrowError();
});