gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] 03/05: fix test merchant backoffce


From: gnunet
Subject: [taler-wallet-core] 03/05: fix test merchant backoffce
Date: Wed, 24 May 2023 15:21:18 +0200

This is an automated email from the git hooks/post-receive script.

sebasjm pushed a commit to branch master
in repository wallet-core.

commit 28b8f2eaf9417b26320805b69b580756de0bcecd
Author: Sebastian <sebasjm@gmail.com>
AuthorDate: Wed May 24 10:12:55 2023 -0300

    fix test merchant backoffce
---
 packages/merchant-backoffice-ui/dev.mjs              |  5 ++---
 packages/merchant-backoffice-ui/package.json         |  2 +-
 .../merchant-backoffice-ui/src/hooks/reserve.test.ts |  8 ++++----
 .../merchant-backoffice-ui/{dev.mjs => test.mjs}     | 20 +++++---------------
 4 files changed, 12 insertions(+), 23 deletions(-)

diff --git a/packages/merchant-backoffice-ui/dev.mjs 
b/packages/merchant-backoffice-ui/dev.mjs
index 4e4b2a7cf..a42311bad 100755
--- a/packages/merchant-backoffice-ui/dev.mjs
+++ b/packages/merchant-backoffice-ui/dev.mjs
@@ -16,10 +16,9 @@
  */
 
 import { serve } from "@gnu-taler/web-util/node";
-import { initializeDev, getFilesInDirectory } from "@gnu-taler/web-util/build";
+import { initializeDev } from "@gnu-taler/web-util/build";
 
-const allTestFiles = getFilesInDirectory("src", /.test.tsx?$/);
-const devEntryPoints = ["src/stories.tsx", "src/index.tsx", ...allTestFiles];
+const devEntryPoints = ["src/stories.tsx", "src/index.tsx"];
 
 const build = initializeDev({
   source: {
diff --git a/packages/merchant-backoffice-ui/package.json 
b/packages/merchant-backoffice-ui/package.json
index dc5668933..56621e783 100644
--- a/packages/merchant-backoffice-ui/package.json
+++ b/packages/merchant-backoffice-ui/package.json
@@ -9,7 +9,7 @@
     "check": "tsc",
     "compile": "tsc && ./build.mjs",
     "dev": "preact watch --port ${PORT:=8080} --no-sw --no-esm",
-    "test": "mocha --require source-map-support/register 'dist/**/*.test.js' 
'dist/**/test.js'",
+    "test": "./test.mjs && mocha --require source-map-support/register 
'dist/**/*.test.js' 'dist/**/test.js'",
     "lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
     "i18n:extract": "pogen extract",
     "i18n:merge": "pogen merge",
diff --git a/packages/merchant-backoffice-ui/src/hooks/reserve.test.ts 
b/packages/merchant-backoffice-ui/src/hooks/reserve.test.ts
index 4068ff8bd..d2831ecff 100644
--- a/packages/merchant-backoffice-ui/src/hooks/reserve.test.ts
+++ b/packages/merchant-backoffice-ui/src/hooks/reserve.test.ts
@@ -245,7 +245,7 @@ describe("reserve api interaction with details", () => {
           expect(query.ok).true;
           if (!query.ok) return;
           expect(query.data).deep.equals({
-            payto_uri: "payto://here",
+            accounts: [{ payto_uri: "payto://here" }],
             tips: [{ reason: "why?", tip_id: "id1", total_amount: "USD:10" }],
           });
 
@@ -293,7 +293,7 @@ describe("reserve api interaction with details", () => {
           if (!query.ok) return;
 
           expect(query.data).deep.equals({
-            payto_uri: "payto://here",
+            accounts: [{ payto_uri: "payto://here" }],
             tips: [
               { reason: "why?", tip_id: "id1", total_amount: "USD:10" },
               { reason: "not", tip_id: "id2", total_amount: "USD:12" },
@@ -340,7 +340,7 @@ describe("reserve api interaction with details", () => {
           expect(query.ok).true;
           if (!query.ok) return;
           expect(query.data).deep.equals({
-            payto_uri: "payto://here",
+            accounts: [{ payto_uri: "payto://here" }],
             tips: [{ reason: "why?", tip_id: "id1", total_amount: "USD:10" }],
           });
 
@@ -386,7 +386,7 @@ describe("reserve api interaction with details", () => {
           if (!query.ok) return;
 
           expect(query.data).deep.equals({
-            payto_uri: "payto://here",
+            accounts: [{ payto_uri: "payto://here" }],
             tips: [
               { reason: "why?", tip_id: "id1", total_amount: "USD:10" },
               { reason: "not", tip_id: "id2", total_amount: "USD:12" },
diff --git a/packages/merchant-backoffice-ui/dev.mjs 
b/packages/merchant-backoffice-ui/test.mjs
similarity index 67%
copy from packages/merchant-backoffice-ui/dev.mjs
copy to packages/merchant-backoffice-ui/test.mjs
index 4e4b2a7cf..20a95fe61 100755
--- a/packages/merchant-backoffice-ui/dev.mjs
+++ b/packages/merchant-backoffice-ui/test.mjs
@@ -15,26 +15,16 @@
  GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
  */
 
-import { serve } from "@gnu-taler/web-util/node";
-import { initializeDev, getFilesInDirectory } from "@gnu-taler/web-util/build";
+import { build } from "@gnu-taler/web-util/build";
+import { getFilesInDirectory } from "@gnu-taler/web-util/build";
 
 const allTestFiles = getFilesInDirectory("src", /.test.tsx?$/);
-const devEntryPoints = ["src/stories.tsx", "src/index.tsx", ...allTestFiles];
 
-const build = initializeDev({
+await build({
   source: {
-    js: devEntryPoints,
+    js: allTestFiles,
     assets: ["src/index.html"],
   },
+  destination: "./dist/test",
   css: "sass",
-  destination: "./dist/dev",
-});
-
-await build();
-
-serve({
-  folder: "./dist/dev",
-  port: 8080,
-  source: "./src",
-  onSourceUpdate: build,
 });

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]