import { LumberProduct, Product } from "@/lib/product" import {ProductAttributeEditor} from "../ProductAttributeEditor" import { fireEvent, render, screen } from '@testing-library/react-native'; describe("Product editor tests", () => { const productName = "Fun Product"; it("Product attributes can be deleted", async () => { const onChange = jest.fn(); const onDelete = jest.fn(); render( ); expect(screen.getByLabelText("Delete Attribute")).not.toBeNull(); fireEvent.press(await screen.getByLabelText("Delete Attribute")); expect(onDelete).toHaveBeenCalled(); }); it("Product attributes can be modified", async () => { const product : Product = { pricePerUnit: 10, dimensions: { l: 40, u: "ft", }, type: "lumber", } const onChange = jest.fn(); const onDelete = jest.fn(); const onKeyChange = jest.fn(); render( ); fireEvent.changeText(screen.getByLabelText("Edit Key"), "new test key"); expect(onKeyChange).toHaveBeenCalled(); fireEvent.changeText(screen.getByLabelText("Edit Value"), "new name"); expect(onChange).toHaveBeenCalled(); fireEvent.press(screen.getByLabelText("Delete Attribute")); expect(onDelete).toHaveBeenCalled(); }) })