botserver/src/util.test.ts

9 lines
141 B
TypeScript
Raw Normal View History

2024-02-17 17:27:53 -03:00
import { GBUtil} from './util';
import { expect, test } from 'vitest'
test('Default', () => {
expect(null).toBe(null);
});