From e89fc1d9bb760af0988d24479ac162d212ecdd6d Mon Sep 17 00:00:00 2001 From: Christian Georgi Date: Mon, 10 Feb 2020 22:24:37 +0000 Subject: [PATCH] Test cosmetics --- packages/bookshop/tests/bookshop.test.js | 55 +++++------------------- 1 file changed, 10 insertions(+), 45 deletions(-) diff --git a/packages/bookshop/tests/bookshop.test.js b/packages/bookshop/tests/bookshop.test.js index 0be00241..4fd2be7d 100644 --- a/packages/bookshop/tests/bookshop.test.js +++ b/packages/bookshop/tests/bookshop.test.js @@ -31,59 +31,24 @@ describe('Bookshop: OData Protocol Level Testing', () => { expect(response.body.value).toEqual([ { - ID: 201, - title: "Sturmhöhe", - author: "Emily Brontë", - currency: { - name: "Pfund", - descr: "Britische Pfund", - code: "GBP", - symbol: "£" - } + ID: 201, title: "Sturmhöhe", author: "Emily Brontë", + currency: { name: "Pfund", descr: "Britische Pfund", code: "GBP", symbol: "£" } }, { - ID: 207, - title: "Jane Eyre", - author: "Charlotte Brontë", - currency: { - name: "Pfund", - descr: "Britische Pfund", - code: "GBP", - symbol: "£" - } + ID: 207, title: "Jane Eyre", author: "Charlotte Brontë", + currency: { name: "Pfund", descr: "Britische Pfund", code: "GBP", symbol: "£" } }, { - ID: 251, - title: "The Raven", - author: "Edgar Allen Poe", - currency: { - name: "US-Dollar", - descr: "United States Dollar", - code: "USD", - symbol: "$" - } + ID: 251, title: "The Raven", author: "Edgar Allen Poe", + currency: { name: "US-Dollar", descr: "United States Dollar", code: "USD", symbol: "$" } }, { - ID: 252, - title: "Eleonora", - author: "Edgar Allen Poe", - currency: { - name: "US-Dollar", - descr: "United States Dollar", - code: "USD", - symbol: "$" - } + ID: 252, title: "Eleonora", author: "Edgar Allen Poe", + currency: { name: "US-Dollar", descr: "United States Dollar", code: "USD", symbol: "$" } }, { - ID: 271, - title: "Catweazle", - author: "Richard Carpenter", - currency: { - name: "Euro", - descr: "European Euro", - code: "EUR", - symbol: "€" - } + ID: 271, title: "Catweazle", author: "Richard Carpenter", + currency: { name: "Euro", descr: "European Euro", code: "EUR", symbol: "€" } } ]) })