Error: Not implemented: HTMLFormElement.prototype.submit

This page summarizes the projects mentioned and recommended in the original post on /r/codehunter

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • jsdom

    A JavaScript implementation of various web standards, for use with Node.js

  • const renderCard = ({ onSubmit = jest.fn(),}: RenderCardParams = {}) => { return render( Save , );}; it("should invoke onSubmit when form is submitted", async () => { const onSubmit = jest.fn(); window.HTMLFormElement.prototype.submit = () => {}; const { getByText } = renderCard({ onSubmit }); const button = getByText("Save").closest("button"); if (button) { fireEvent.click(button); } await wait(() => expect(onSubmit).toHaveBeenCalled()); }); I am receiving "Error: Not implemented: HTMLFormElement.prototype.submit". I tried the solution mentioned here https://github.com/jsdom/jsdom/issues/1937 , but it did not work. I do not want to silence the errors but implement the test correctly. Thank you.

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts