9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
import { test } from 'vitest';
|
|
import { expectTypeOf } from 'expect-type';
|
|
test('duxstate basic', () => {
|
|
const x = {
|
|
initialState: 'potato',
|
|
};
|
|
expectTypeOf(true).toEqualTypeOf();
|
|
});
|