♻️ Remove ? char from shape attrs

This commit is contained in:
Andrey Antukh 2023-05-29 18:21:48 +02:00
parent 405aa66357
commit 6e7595f48c
36 changed files with 203 additions and 168 deletions

View file

@ -19,10 +19,10 @@
[frontend-tests.helpers.pages :as thp]
[potok.core :as ptk]))
(t/use-fixtures :each
{:before thp/reset-idmap!})
;; (t/use-fixtures :each
;; {:before thp/reset-idmap!})
; === Test touched ======================
;; ; === Test touched ======================
(t/deftest test-touched
(t/async done
@ -77,7 +77,8 @@
(t/is (= (:name c-shape1) "Rect 1"))
(t/is (= (:touched c-shape1) nil))
(t/is (= (:fill-color c-shape1) clr/white))
(t/is (= (:fill-opacity c-shape1) 1)))))]
(t/is (= (:fill-opacity c-shape1) 1))
)))]
(ptk/emit!
store
@ -596,7 +597,6 @@
(t/is (= (:touched shape2) nil))
(t/is (= (:fill-color shape2) clr/test))
(t/is (= (:fill-opacity shape2) 0.5))
(t/is (= (:name c-instance2) "Board"))
(t/is (= (:touched c-instance2) nil))
(t/is (= (:name c-instance1) "Rect 1"))
@ -607,8 +607,7 @@
(t/is (= (:fill-opacity c-shape1) 0))
(t/is (= (:name c-shape2) "Rect 1"))
(t/is (= (:touched c-shape2) #{:fill-group}))
(t/is (= (:fill-color c-shape2) clr/test))
(t/is (= (:fill-opacity c-shape2) 0.5)))))]
)))]
(ptk/emit!
store
@ -1211,7 +1210,7 @@
(dwl/reset-component (:id instance1))
:the/end))))
;; ; === Test update component ======================
;; === Test update component ======================
(t/deftest test-update-component
(t/async done