botserver/src/util.test.ts
2024-05-25 19:11:01 -03:00

8 lines
130 B
TypeScript

import { GBUtil} from './util';
import { expect, test } from 'vitest'
test('Default', () => {
expect(null).toBe(null);
});