]> gitweb.hhaalo.de Git - speisekarten-editor.git/commitdiff
remove: drag and drop test
authorBastian Dehn <hhaalo@arcor.de>
Sun, 3 Jul 2022 10:50:57 +0000 (12:50 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Sun, 3 Jul 2022 10:50:57 +0000 (12:50 +0200)
src/app/subtitle/subtitle.component.spec.ts

index 639abce18995121b9a90cecd4ffc2f4aec6a73f9..bed5fa59f3b138615e2e356227cd202f729fd8bb 100644 (file)
@@ -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);
-  });
 });