From 87ae2e001238ad0d97ca8d5ca976b3d936380378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Moya?= Date: Fri, 28 Aug 2026 14:07:12 +0200 Subject: [PATCH] wip --- .../tokens/logic/token_libraries_test.cljs | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 frontend/test/frontend_tests/tokens/logic/token_libraries_test.cljs diff --git a/frontend/test/frontend_tests/tokens/logic/token_libraries_test.cljs b/frontend/test/frontend_tests/tokens/logic/token_libraries_test.cljs new file mode 100644 index 0000000000..23cf709326 --- /dev/null +++ b/frontend/test/frontend_tests/tokens/logic/token_libraries_test.cljs @@ -0,0 +1,32 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) KALEIDOS SUBSIDIARY SL + +(ns frontend-tests.tokens.logic.token-libraries-test + (:require + [app.common.test-helpers.compositions :as ctho] + [app.common.test-helpers.files :as cthf] + [app.common.test-helpers.ids-map :as cthi] + [app.common.test-helpers.shapes :as cths] + [app.common.test-helpers.tokens :as ctht] + [app.common.types.text :as txt] + [app.common.types.tokens-lib :as ctob] + [app.common.types.tokens-status :as ctos] + [app.main.data.workspace.tokens.application :as dwta] + [app.main.data.workspace.tokens.library-edit :as dwtl] + [app.main.data.workspace.wasm-text :as dwwt] + [cljs.test :as t :include-macros true] + [cuerdas.core :as str] + [frontend-tests.helpers.pages :as thp] + [frontend-tests.helpers.state :as ths] + [frontend-tests.helpers.wasm :as thw] + [frontend-tests.tokens.helpers.state :as tohs] + [frontend-tests.tokens.helpers.tokens :as toht])) + +(t/use-fixtures :each + {:before (fn [] + (thp/reset-idmap!) + (thw/setup-wasm-mocks!)) + :after thw/teardown-wasm-mocks!})