diff --git a/test/accessibility/RovingTabIndex-test.js b/test/accessibility/RovingTabIndex-test.js
index 2b55d1420c..e7d7a0977d 100644
--- a/test/accessibility/RovingTabIndex-test.js
+++ b/test/accessibility/RovingTabIndex-test.js
@@ -47,7 +47,7 @@ const button4 = ;
describe("RovingTabIndex", () => {
it("RovingTabIndexProvider renders children as expected", () => {
const wrapper = mount(
- Test
+ {() => Test
}
);
expect(wrapper.text()).toBe("Test");
expect(wrapper.html()).toBe('
Test
');
@@ -55,9 +55,11 @@ describe("RovingTabIndex", () => {
it("RovingTabIndexProvider works as expected with useRovingTabIndex", () => {
const wrapper = mount(
- { button1 }
- { button2 }
- { button3 }
+ {() =>
+ { button1 }
+ { button2 }
+ { button3 }
+ }
);
// should begin with 0th being active
@@ -95,13 +97,15 @@ describe("RovingTabIndex", () => {
it("RovingTabIndexProvider works as expected with RovingTabIndexWrapper", () => {
const wrapper = mount(
- { button1 }
- { button2 }
-
- {({onFocus, isActive, ref}) =>
-
- }
-
+ {() =>
+ { button1 }
+ { button2 }
+
+ {({onFocus, isActive, ref}) =>
+
+ }
+
+ }
);
// should begin with 0th being active