From 96844f5bea51587a07563c6828712e23602e8ac4 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 22 May 2024 19:46:09 +0200 Subject: [PATCH 1/3] :paperclip: Fix cljs fmt linter issue --- frontend/src/app/main/ui/workspace/plugins.cljs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/app/main/ui/workspace/plugins.cljs b/frontend/src/app/main/ui/workspace/plugins.cljs index 9baac839f..489f5ca67 100644 --- a/frontend/src/app/main/ui/workspace/plugins.cljs +++ b/frontend/src/app/main/ui/workspace/plugins.cljs @@ -70,12 +70,12 @@ [{:keys [name description host code icon permissions]}] (.ɵloadPlugin js/window #js - {:name name - :description description - :host host - :code code - :icon icon - :permissions (apply array permissions)})) + {:name name + :description description + :host host + :code code + :icon icon + :permissions (apply array permissions)})) (mf/defc plugin-management-dialog {::mf/register modal/components From 7f8c6008375c3e95d26bbf0173a1c7e17143c6a9 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 22 May 2024 19:49:35 +0200 Subject: [PATCH 2/3] :paperclip: Fix cljs linter issue --- frontend/src/app/main/ui/workspace/plugins.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/workspace/plugins.cljs b/frontend/src/app/main/ui/workspace/plugins.cljs index 489f5ca67..34b687bda 100644 --- a/frontend/src/app/main/ui/workspace/plugins.cljs +++ b/frontend/src/app/main/ui/workspace/plugins.cljs @@ -26,7 +26,7 @@ (mf/defc plugin-entry [{:keys [index manifest on-open-plugin on-remove-plugin]}] - (let [{:keys [host icon url name description]} manifest + (let [{:keys [host icon name description]} manifest handle-open-click (mf/use-callback (mf/deps index manifest on-open-plugin) From 2c30dde19877b41a9773e7c52b28e03866059b33 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 23 May 2024 11:38:16 +0200 Subject: [PATCH 3/3] :paperclip: Disable frontend integration tests --- .circleci/config.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 52ec3b79e..f30fa0076 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -102,15 +102,15 @@ jobs: yarn install yarn test - - run: - name: "frontend integration tests" - working_directory: "./frontend" - command: | - yarn install - yarn run compile - clojure -M:dev:shadow-cljs compile main - yarn playwright install --with-deps chromium - yarn e2e:test + # - run: + # name: "frontend integration tests" + # working_directory: "./frontend" + # command: | + # yarn install + # yarn run compile + # clojure -M:dev:shadow-cljs compile main + # yarn playwright install --with-deps chromium + # yarn e2e:test - run: name: "backend tests"