diff --git a/test/usage.test.ts b/test/usage.test.ts index e1c0e6f..8d18981 100644 --- a/test/usage.test.ts +++ b/test/usage.test.ts @@ -246,6 +246,10 @@ test('Array items can be checked with `.items`', () => { expectTypeOf([1, 2, 3]).items.not.toBeString() }) +test('You can also compare arrays directly', () => { + expectTypeOf().not.toEqualTypeOf() +}) + test('Check that functions never return', () => { const thrower = () => { throw new Error('oh no')