@hisptz/react-ui
Version:
A collection of reusable complex DHIS2 react ui components.
17 lines • 426 B
JavaScript
import { mount } from "@cypress/react";
import React from "react";
import { VALUE_TYPES } from "./constants";
import { Input } from "./index";
describe("Form Input Tests", () => {
it("should render", function () {
mount( /*#__PURE__*/React.createElement(Input, {
input: {
name: "name",
onChange: () => {
return;
}
},
valueType: VALUE_TYPES.TEXT.name
}));
});
});