UNPKG

shift-admin-ui-kit

Version:
19 lines (13 loc) 369 B
import React from "react" import { shallow, mount } from "enzyme" import InputHint from "../../src/javascripts/components/InputHint" test("renders text input hint containing hint text", () => { // arrange const hint = "My Input Hint" // act const wrapper = shallow( <InputHint hint={ hint } /> ) // assert expect(wrapper).toIncludeText(hint) });