mirror of
https://github.com/penpot/penpot.git
synced 2025-03-31 09:01:20 -05:00
📎 Rename app-tests to backend-tests for naming consistency
This commit is contained in:
parent
0dc3dba428
commit
12e2d3ad96
25 changed files with 31 additions and 31 deletions
|
@ -63,7 +63,7 @@
|
|||
;; --- Development Stuff
|
||||
|
||||
(defn- run-tests
|
||||
([] (run-tests #"^app-tests.test-.*$"))
|
||||
([] (run-tests #"^backend-tests.test-.*$"))
|
||||
([o]
|
||||
(repl/refresh)
|
||||
(cond
|
||||
|
|
Binary file not shown.
|
@ -4,9 +4,9 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-bounce-handling
|
||||
(ns backend-tests.test-bounce-handling
|
||||
(:require
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.db :as db]
|
||||
[app.emails :as emails]
|
||||
[app.http.awsns :as awsns]
|
|
@ -4,9 +4,9 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-email-sending
|
||||
(ns backend-tests.test-email-sending
|
||||
(:require
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.db :as db]
|
||||
[app.emails :as emails]
|
||||
[clojure.test :as t]
|
Before Width: | Height: | Size: 305 KiB After Width: | Height: | Size: 305 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
@ -4,7 +4,7 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-helpers
|
||||
(ns backend-tests.test-helpers
|
||||
(:require
|
||||
[app.common.data :as d]
|
||||
[app.common.flags :as flags]
|
|
@ -4,9 +4,9 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-rpc-file
|
||||
(ns backend-tests.test-rpc-file
|
||||
(:require
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.common.uuid :as uuid]
|
||||
[app.db :as db]
|
||||
[app.db.sql :as sql]
|
|
@ -4,9 +4,9 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-rpc-font
|
||||
(ns backend-tests.test-rpc-font
|
||||
(:require
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.common.uuid :as uuid]
|
||||
[app.db :as db]
|
||||
[app.http :as http]
|
|
@ -4,10 +4,10 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-rpc-management
|
||||
(ns backend-tests.test-rpc-management
|
||||
(:require
|
||||
[app-tests.test-storage :refer [configure-storage-backend]]
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-storage :refer [configure-storage-backend]]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.common.uuid :as uuid]
|
||||
[app.db :as db]
|
||||
[app.http :as http]
|
|
@ -4,9 +4,9 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-rpc-media
|
||||
(ns backend-tests.test-rpc-media
|
||||
(:require
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.common.uuid :as uuid]
|
||||
[app.db :as db]
|
||||
[app.storage :as sto]
|
|
@ -4,9 +4,9 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-rpc-profile
|
||||
(ns backend-tests.test-rpc-profile
|
||||
(:require
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.common.uuid :as uuid]
|
||||
[app.config :as cf]
|
||||
[app.db :as db]
|
|
@ -4,9 +4,9 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-rpc-project
|
||||
(ns backend-tests.test-rpc-project
|
||||
(:require
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.common.uuid :as uuid]
|
||||
[app.db :as db]
|
||||
[app.http :as http]
|
|
@ -4,9 +4,9 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-rpc-team
|
||||
(ns backend-tests.test-rpc-team
|
||||
(:require
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.common.uuid :as uuid]
|
||||
[app.db :as db]
|
||||
[app.http :as http]
|
|
@ -4,9 +4,9 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-rpc-viewer
|
||||
(ns backend-tests.test-rpc-viewer
|
||||
(:require
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.common.uuid :as uuid]
|
||||
[app.db :as db]
|
||||
[clojure.test :as t]
|
|
@ -4,9 +4,9 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-storage
|
||||
(ns backend-tests.test-storage
|
||||
(:require
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.common.exceptions :as ex]
|
||||
[app.common.uuid :as uuid]
|
||||
[app.db :as db]
|
|
@ -4,9 +4,9 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-telemetry-task
|
||||
(ns backend-tests.test-telemetry-task
|
||||
(:require
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.db :as db]
|
||||
[app.emails :as emails]
|
||||
[app.util.time :as dt]
|
|
@ -4,9 +4,9 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-util-objects-map
|
||||
(ns backend-tests.test-util-objects-map
|
||||
(:require
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.common.spec :as us]
|
||||
[app.common.transit :as transit]
|
||||
[app.common.types.shape :as cts]
|
|
@ -4,9 +4,9 @@
|
|||
;;
|
||||
;; Copyright (c) KALEIDOS INC
|
||||
|
||||
(ns app-tests.test-util-pointer-map
|
||||
(ns backend-tests.test-util-pointer-map
|
||||
(:require
|
||||
[app-tests.test-helpers :as th]
|
||||
[backend-tests.test-helpers :as th]
|
||||
[app.common.spec :as us]
|
||||
[app.common.transit :as transit]
|
||||
[app.common.types.shape :as cts]
|
Loading…
Add table
Reference in a new issue