From 6b91b09bd1094d5deec68e48f454432452ca0d63 Mon Sep 17 00:00:00 2001 From: Dmitry Til Date: Sun, 3 Apr 2022 18:33:38 +0300 Subject: [PATCH] update test case to fail --- packages/stitch/tests/typeMerging.test.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/stitch/tests/typeMerging.test.ts b/packages/stitch/tests/typeMerging.test.ts index f12eaef6fdc..19fa49f56df 100644 --- a/packages/stitch/tests/typeMerging.test.ts +++ b/packages/stitch/tests/typeMerging.test.ts @@ -170,9 +170,7 @@ describe('merging using type merging', () => { const query = /* GraphQL */ ` query { stats { - __typename totalChirps - totalUsers } } `; @@ -185,9 +183,7 @@ describe('merging using type merging', () => { expect(result.errors).toBeUndefined(); assertSome(result.data); const statsData: any = result.data['stats']; - expect(statsData.__typename).toBe('Stats'); expect(statsData.totalChirps).not.toBe(null); - expect(statsData.totalUsers).not.toBe(null); }); test('handle top level failures on subschema queries', async () => {