UNPKG

@mackenly/zaraz-tools

Version:

Unofficial 3rd party toolkit for Zaraz

14 lines (13 loc) 430 B
import { describe, it, expect } from 'vitest'; import * as index from '.'; describe('Index', async () => { it('should export mockManager', async () => { expect(index).toHaveProperty('mockManager'); }); it('should export mockEvent', async () => { expect(index).toHaveProperty('mockEvent'); }); it('should export sha256', async () => { expect(index).toHaveProperty('sha256'); }); });