Skip to content

Commit 804e741

Browse files
committed
Fix unit test
1 parent 0b41ef2 commit 804e741

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/plugins/typescript/resolvers/tests/ts-resolvers.federation.interface.spec.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,10 @@ describe('TypeScript Resolvers Plugin + Apollo Federation - Interface', () => {
127127
128128
/** Mapping of interface types */
129129
export type ResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
130-
Person: ( User ) | ( Admin );
130+
Person:
131+
| ( User )
132+
| ( Admin )
133+
;
131134
};
132135
133136
/** Mapping between all available schema types and the resolvers types */

0 commit comments

Comments
 (0)