diff --git a/test/clj/auto_ap/ezcater_test.clj b/test/clj/auto_ap/ezcater_test.clj index aef2da5f..ffb1c78a 100644 --- a/test/clj/auto_ap/ezcater_test.clj +++ b/test/clj/auto_ap/ezcater_test.clj @@ -3,7 +3,8 @@ [auto-ap.ezcater.core :as sut] [auto-ap.integration.util :refer [wrap-setup]] [auto-ap.utils :refer [dollars=]] - [clojure.test :as t])) + [clojure.test :as t] + [auto-ap.time-reader])) (t/use-fixtures :each wrap-setup) diff --git a/test/clj/auto_ap/integration/graphql/accounts.clj b/test/clj/auto_ap/integration/graphql/accounts.clj index 45a7443e..de92616e 100644 --- a/test/clj/auto_ap/integration/graphql/accounts.clj +++ b/test/clj/auto_ap/integration/graphql/accounts.clj @@ -3,6 +3,7 @@ [auto-ap.datomic :refer [conn]] [auto-ap.graphql.accounts :as sut] [auto-ap.integration.util :refer [admin-token user-token wrap-setup]] + [datomic.client.api :as dc] [clojure.test :as t :refer [deftest is testing use-fixtures]])) (use-fixtures :each wrap-setup) diff --git a/test/clj/auto_ap/integration/graphql/invoices.clj b/test/clj/auto_ap/integration/graphql/invoices.clj index a2f86975..7d8275e8 100644 --- a/test/clj/auto_ap/integration/graphql/invoices.clj +++ b/test/clj/auto_ap/integration/graphql/invoices.clj @@ -3,6 +3,7 @@ [auto-ap.datomic :refer [conn]] [auto-ap.graphql.invoices :as sut] [auto-ap.integration.util :refer [admin-token wrap-setup]] + [datomic.client.api :as dc] [clojure.test :as t :refer [deftest is testing use-fixtures]])) (use-fixtures :each wrap-setup)