it("can add new items",() => { // WishList 모델 생 const list = WishList.create(); // WishList에 아이템 추가 list.add( WishListItem.create({ name: "Chesterton", price: 10 }) );
expect(list.items.length).toBe(1); // 리스트 길이는 1 expect(list.items[0].name).toBe("Chesterton"); // 첫번째 항목이 이름은 Chesterton list.items[0].changeName("Book of G.K. Chesterton"); 첫번째 항목이 이름 수정 expect(list.items[0].name).toBe("Book of G.K. Chesterton"); 첫번째 항목이 이름은 Book of G.K. Chesterton });