From: Bastian Dehn Date: Sun, 3 Jul 2022 10:50:57 +0000 (+0200) Subject: remove: drag and drop test X-Git-Tag: v1.0.7^2~4 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=48311db25245f0730b267e89cb6dc09ced45b780;p=speisekarten-editor.git remove: drag and drop test --- diff --git a/src/app/subtitle/subtitle.component.spec.ts b/src/app/subtitle/subtitle.component.spec.ts index 639abce..bed5fa5 100644 --- a/src/app/subtitle/subtitle.component.spec.ts +++ b/src/app/subtitle/subtitle.component.spec.ts @@ -134,25 +134,4 @@ describe('SubtitleComponent', () => { component.removeFood(1); expect(component.subtitle.Foods).toEqual(expectedFoods); }); - - it('drag and drop move item', () => { - let expectedFoods = [ - { - Food: "Schnitzel", - sideDish: "mit Pommes", - price: "10,50 €" - }, - { - Food: "Hawaischnitzel", - sideDish: "mit Pommes", - price: "11,50 €" - }, - { - Food: "Jägerschnitzel", - sideDish: "mit Pommes", - price: "12,50 €" - } - ]; - expect(component.subtitle.Foods).toEqual(expectedFoods); - }); });