Skip to content

Commit

Permalink
fix(type): test
Browse files Browse the repository at this point in the history
  • Loading branch information
marcj committed Oct 10, 2023
1 parent af85f1f commit c335466
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/type/tests/type-serialization.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {
Expand Down

0 comments on commit c335466

Please # to comment.