From 4ecc10880e6b600bdc1f36413e831e2948fb0e39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Wed, 27 Jan 2016 15:47:57 -0800 Subject: [PATCH] Merge pull request #5928 from scjody/patch-1 Add a link to the list of supported events (cherry picked from commit fc547e8380cfe778d0995dc452b56e8d15b87cf4) --- docs/docs/10.4-test-utils.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/10.4-test-utils.md b/docs/docs/10.4-test-utils.md index 65d92f2b6a..c08899073d 100644 --- a/docs/docs/10.4-test-utils.md +++ b/docs/docs/10.4-test-utils.md @@ -43,7 +43,7 @@ ReactTestUtils.Simulate.keyDown(node, {key: "Enter", keyCode: 13, which: 13}); *Note that you will have to provide any event property that you're using in your component (e.g. keyCode, which, etc...) as React is not creating any of these for you.* -`Simulate` has a method for every event that React understands. +`Simulate` has a method for [every event that React understands](/react/docs/events.html#supported-events). ### renderIntoDocument