From a41ee3657fbccf3db73b735dd5b63b9a96e697d0 Mon Sep 17 00:00:00 2001 From: Gustavo Antunes <17601467+gantunesr@users.noreply.github.com> Date: Thu, 17 Nov 2022 14:39:51 -0300 Subject: [PATCH] Move mockss to new file --- app/components/Views/Snaps/mocks.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 app/components/Views/Snaps/mocks.ts diff --git a/app/components/Views/Snaps/mocks.ts b/app/components/Views/Snaps/mocks.ts new file mode 100644 index 00000000000..3a8ef2f9cef --- /dev/null +++ b/app/components/Views/Snaps/mocks.ts @@ -0,0 +1,14 @@ +const mockIframe = ``; + +const mockHTML = ` + +

Hello World

+ +`; + +// eslint-disable-next-line import/prefer-default-export +export { mockIframe, mockHTML };