9 lines
141 B
TypeScript
9 lines
141 B
TypeScript
![]() |
import { GBUtil} from './util';
|
||
|
import { expect, test } from 'vitest'
|
||
|
|
||
|
test('Default', () => {
|
||
|
|
||
|
expect(null).toBe(null);
|
||
|
|
||
|
});
|