describe("archive button", () => {
    it("shows the archive button", async () => {
      render(<ActionsCell id={1} />);
      const button = await screen.findByTitle("archive");
      expect(button).toBeInTheDocument();