From c3354667f996586964643d561687ed246901091c Mon Sep 17 00:00:00 2001 From: "Marc J. Schmidt" Date: Wed, 11 Oct 2023 00:44:15 +0200 Subject: [PATCH] fix(type): test --- packages/type/tests/type-serialization.spec.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/type/tests/type-serialization.spec.ts b/packages/type/tests/type-serialization.spec.ts index a28e60438..943b2179d 100644 --- a/packages/type/tests/type-serialization.spec.ts +++ b/packages/type/tests/type-serialization.spec.ts @@ -44,8 +44,10 @@ test('serialize type annotations', () => { { kind: ReflectionKind.string, typeName: 't', decorators: [1] }, { kind: ReflectionKind.objectLiteral, typeName: 'PrimaryKey', types: [2] }, { kind: ReflectionKind.propertySignature, name: '__meta', optional: true, type: 3 }, - { kind: ReflectionKind.tuple, types: [{ kind: ReflectionKind.tupleMember, type: 4 }] }, - { kind: ReflectionKind.literal, literal: 'primaryKey' }]); + { kind: ReflectionKind.tuple, types: [{ kind: ReflectionKind.tupleMember, type: 4 }, { kind: ReflectionKind.tupleMember, type: 5 }] }, + { kind: ReflectionKind.literal, literal: 'primaryKey' }, + { kind: ReflectionKind.never } + ]); }); test('serialize container', () => {