diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-09-26 14:15:49 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-09-26 16:12:58 +0900 |
commit | e1b4a2dc6763966628bc4a29838c48022cd5b4e5 (patch) | |
tree | 7cb5526ebf468720cc23846ed99b3aca5fe459a8 /test/settings/components/ui | |
parent | 645107c3fcc967e8b5824355c23287611d864612 (diff) |
Use jsdom environment on html test
Diffstat (limited to 'test/settings/components/ui')
-rw-r--r-- | test/settings/components/ui/Radio.test.tsx | 4 | ||||
-rw-r--r-- | test/settings/components/ui/Text.test.tsx | 4 | ||||
-rw-r--r-- | test/settings/components/ui/TextArea.test.tsx | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/test/settings/components/ui/Radio.test.tsx b/test/settings/components/ui/Radio.test.tsx index f929ee3..bce4d3a 100644 --- a/test/settings/components/ui/Radio.test.tsx +++ b/test/settings/components/ui/Radio.test.tsx @@ -1,3 +1,7 @@ +/** + * @jest-environment jsdom + */ + import React from "react"; import ReactDOM from "react-dom"; import ReactTestUtils from "react-dom/test-utils"; diff --git a/test/settings/components/ui/Text.test.tsx b/test/settings/components/ui/Text.test.tsx index d5451bb..86c4132 100644 --- a/test/settings/components/ui/Text.test.tsx +++ b/test/settings/components/ui/Text.test.tsx @@ -1,3 +1,7 @@ +/** + * @jest-environment jsdom + */ + import React from "react"; import ReactDOM from "react-dom"; import ReactTestUtils from "react-dom/test-utils"; diff --git a/test/settings/components/ui/TextArea.test.tsx b/test/settings/components/ui/TextArea.test.tsx index 258d791..84c0c93 100644 --- a/test/settings/components/ui/TextArea.test.tsx +++ b/test/settings/components/ui/TextArea.test.tsx @@ -1,3 +1,7 @@ +/** + * @jest-environment jsdom + */ + import React from "react"; import ReactDOM from "react-dom"; import ReactTestUtils from "react-dom/test-utils"; |