@mackenly/zaraz-tools
Version:
Unofficial 3rd party toolkit for Zaraz
12 lines (10 loc) • 338 B
text/typescript
import { describe, it, expect } from 'vitest';
import * as mocking from '.';
describe('mocking', async () => {
it('should export mockManager', async () => {
expect(mocking).toHaveProperty('mockManager');
});
it('should export mockEvent', async () => {
expect(mocking).toHaveProperty('mockEvent');
});
});