Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Labs] Suggest component #1499

Merged
merged 14 commits into from
Aug 29, 2017
Prev Previous commit
Next Next commit
Fix typo in selectTests.tsx
  • Loading branch information
cmslewis committed Aug 29, 2017
commit e614ac10784aa7dd4f48c382d3112fbe5eed2944
2 changes: 1 addition & 1 deletion packages/labs/test/selectTests.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe("<Select>", () => {
assert.lengthOf(wrapper.find("address"), 1, "should find noResults");
});

it("clicking item invokes onSelectItem", () => {
it("clicking item invokes onItemSelect", () => {
const wrapper = select();
wrapper.find("a").at(4).simulate("click");
assert.strictEqual(handlers.onItemSelect.args[0][0], TOP_100_FILMS[4]);
Expand Down