updux/dist/types.test.js

9 lines
205 B
JavaScript
Raw Normal View History

2025-01-31 18:16:41 +00:00
import { test } from 'vitest';
import { expectTypeOf } from 'expect-type';
test('duxstate basic', () => {
const x = {
initialState: 'potato',
};
expectTypeOf(true).toEqualTypeOf();
});