mirror of
https://github.com/penpot/penpot.git
synced 2025-02-08 08:09:14 -05:00
Ignore rxjs errors
This commit is contained in:
parent
c9673ca828
commit
192f847d50
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
(ns token-tests.logic.token-actions-test
|
(ns token-tests.logic.token-actions-test
|
||||||
(:require
|
(:require
|
||||||
|
[app.common.logging :as log]
|
||||||
[app.common.test-helpers.compositions :as ctho]
|
[app.common.test-helpers.compositions :as ctho]
|
||||||
[app.common.test-helpers.files :as cthf]
|
[app.common.test-helpers.files :as cthf]
|
||||||
[app.common.test-helpers.shapes :as cths]
|
[app.common.test-helpers.shapes :as cths]
|
||||||
|
@ -11,7 +12,10 @@
|
||||||
[token-tests.helpers.tokens :as toht]))
|
[token-tests.helpers.tokens :as toht]))
|
||||||
|
|
||||||
(t/use-fixtures :each
|
(t/use-fixtures :each
|
||||||
{:before thp/reset-idmap!})
|
{:before (fn []
|
||||||
|
;; Ignore rxjs async errors
|
||||||
|
(log/set-level! "app.main.data.changes" :error)
|
||||||
|
(thp/reset-idmap!))})
|
||||||
|
|
||||||
(defn setup-file
|
(defn setup-file
|
||||||
[& {:keys [rect-1 rect-2 rect-3]}]
|
[& {:keys [rect-1 rect-2 rect-3]}]
|
||||||
|
|
Loading…
Add table
Reference in a new issue