botserver/src/util.test.ts

9 lines
130 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', () => {
2024-05-25 19:11:01 -03:00
2024-02-17 17:27:53 -03:00
expect(null).toBe(null);
2024-05-25 19:11:01 -03:00
2024-02-17 17:27:53 -03:00
});