8 lines
130 B
TypeScript
8 lines
130 B
TypeScript
import { GBUtil} from './util';
|
|
import { expect, test } from 'vitest'
|
|
|
|
test('Default', () => {
|
|
|
|
expect(null).toBe(null);
|
|
|
|
});
|