aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/tests/__mocks__
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-09-03 12:03:59 -0300
committerSebastian <sebasjm@gmail.com>2021-09-03 12:05:23 -0300
commit1ea598b048375c4043ac4faff13af0af6ae9b041 (patch)
tree7868158762f96d64bd4ba15de5fe037c1557b4dd /packages/taler-wallet-webextension/tests/__mocks__
parenta4489b80e3da4ebdbdd6fe009fef278adf9d4623 (diff)
downloadwallet-core-1ea598b048375c4043ac4faff13af0af6ae9b041.tar.xz
automated test all stories
Diffstat (limited to 'packages/taler-wallet-webextension/tests/__mocks__')
-rw-r--r--packages/taler-wallet-webextension/tests/__mocks__/linaria.ts33
-rw-r--r--packages/taler-wallet-webextension/tests/__mocks__/setupTests.ts5
2 files changed, 36 insertions, 2 deletions
diff --git a/packages/taler-wallet-webextension/tests/__mocks__/linaria.ts b/packages/taler-wallet-webextension/tests/__mocks__/linaria.ts
new file mode 100644
index 000000000..398ac0ec1
--- /dev/null
+++ b/packages/taler-wallet-webextension/tests/__mocks__/linaria.ts
@@ -0,0 +1,33 @@
+/*
+ This file is part of GNU Taler
+ (C) 2021 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+ */
+
+/**
+*
+* @author Sebastian Javier Marchano (sebasjm)
+*/
+
+/**
+ * Here we are mocking the linaria runtime since it should not be used in
+ * runtime.
+ */
+export const styled = new Proxy(function (tag: any) {
+ return jest.fn(() => `mock-styled.${tag}`);
+}, {
+ get(o, prop) {
+ return o(prop);
+ },
+})
+
diff --git a/packages/taler-wallet-webextension/tests/__mocks__/setupTests.ts b/packages/taler-wallet-webextension/tests/__mocks__/setupTests.ts
index 841e0babc..bae5c128f 100644
--- a/packages/taler-wallet-webextension/tests/__mocks__/setupTests.ts
+++ b/packages/taler-wallet-webextension/tests/__mocks__/setupTests.ts
@@ -29,5 +29,6 @@ configure({
// Polyfill for encoding which isn't present globally in jsdom
import { TextEncoder, TextDecoder } from 'util'
-global.TextEncoder = TextEncoder
-global.TextDecoder = TextDecoder \ No newline at end of file
+global.TextEncoder = TextEncoder;
+global.TextDecoder = TextDecoder;
+(global as any).chrome = {}; \ No newline at end of file