From b0a744fd58a0a4102274fe7551b00d544567bf69 Mon Sep 17 00:00:00 2001 From: Tee Date: Sun, 14 Mar 2021 21:36:53 -0400 Subject: [PATCH] Fix cardService test formatting --- test/cardService.test.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/cardService.test.ts b/test/cardService.test.ts index 7a711e8..c1dec81 100644 --- a/test/cardService.test.ts +++ b/test/cardService.test.ts @@ -32,15 +32,13 @@ describe('Card Service', () => { const result: Supertype[] = await getSupertypes(); expect(expected.sort()).toEqual(result.sort()); - }); it('should get a list of card subtypes', async () => { const expected: string[] = Object.values(Subtype); const result: Subtype[] = await getSubtypes(); - console.log(expected); - expect(expected.sort()).toEqual(result.sort()); + expect(expected.sort()).toEqual(result.sort()); }); it('should get a list of card rarities', async () => { @@ -48,7 +46,6 @@ describe('Card Service', () => { const result: Rarity[] = await getRarities(); expect(expected.sort()).toEqual(result.sort()); - }); it('should get a list of card types', async () => { @@ -56,6 +53,5 @@ describe('Card Service', () => { const result: Type[] = await getTypes(); expect(expected.sort()).toEqual(result.sort()); - }); }) \ No newline at end of file