mirror of
https://github.com/penpot/penpot.git
synced 2025-08-07 14:38:33 +02:00
💄 Rename 'test' directory to 'tests'.
This commit is contained in:
parent
fe2c3aa8ad
commit
19529408f4
17 changed files with 13 additions and 9 deletions
|
@ -1,2 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
clojure -A:dev:test -m kaocha.runner "$@"
|
|
|
@ -1,4 +1,8 @@
|
||||||
{:deps
|
{:mvn/repos
|
||||||
|
{"central" {:url "https://repo1.maven.org/maven2/"}
|
||||||
|
"clojars" {:url "https://clojars.org/repo"}
|
||||||
|
"jcenter" {:url "https://jcenter.bintray.com/"}}
|
||||||
|
:deps
|
||||||
{org.clojure/clojure {:mvn/version "1.10.1"}
|
{org.clojure/clojure {:mvn/version "1.10.1"}
|
||||||
funcool/promesa {:mvn/version "5.0.0"}
|
funcool/promesa {:mvn/version "5.0.0"}
|
||||||
funcool/cuerdas {:mvn/version "2.2.1"}
|
funcool/cuerdas {:mvn/version "2.2.1"}
|
||||||
|
@ -44,7 +48,7 @@
|
||||||
|
|
||||||
mount/mount {:mvn/version "0.1.16"}
|
mount/mount {:mvn/version "0.1.16"}
|
||||||
environ/environ {:mvn/version "1.1.0"}}
|
environ/environ {:mvn/version "1.1.0"}}
|
||||||
:paths ["src" "vendor" "resources" "../common"]
|
:paths ["src" "resources" "../common"]
|
||||||
:aliases
|
:aliases
|
||||||
{:dev
|
{:dev
|
||||||
{:extra-deps
|
{:extra-deps
|
||||||
|
@ -53,13 +57,14 @@
|
||||||
fipp/fipp {:mvn/version "0.6.21"}
|
fipp/fipp {:mvn/version "0.6.21"}
|
||||||
criterium/criterium {:mvn/version "0.4.5"}
|
criterium/criterium {:mvn/version "0.4.5"}
|
||||||
mockery/mockery {:mvn/version "0.1.4"}}
|
mockery/mockery {:mvn/version "0.1.4"}}
|
||||||
:extra-paths ["test"]}
|
:extra-paths ["tests"]}
|
||||||
|
|
||||||
:repl
|
:repl
|
||||||
{:main-opts ["-m" "rebel-readline.main"]}
|
{:main-opts ["-m" "rebel-readline.main"]}
|
||||||
|
|
||||||
:test
|
:tests
|
||||||
{:extra-deps {lambdaisland/kaocha {:mvn/version "0.0-565"}}}
|
{:extra-deps {lambdaisland/kaocha {:mvn/version "0.0-565"}}
|
||||||
|
:main-opts ["-m" "kaocha.runner"]}
|
||||||
|
|
||||||
:ancient
|
:ancient
|
||||||
{:main-opts ["-m" "deps-ancient.deps-ancient"]
|
{:main-opts ["-m" "deps-ancient.deps-ancient"]
|
||||||
|
|
|
@ -2,6 +2,9 @@
|
||||||
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
;; 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/.
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
;;
|
;;
|
||||||
|
;; This Source Code Form is "Incompatible With Secondary Licenses", as
|
||||||
|
;; defined by the Mozilla Public License, v. 2.0.
|
||||||
|
;;
|
||||||
;; Copyright (c) 2016-2019 Andrey Antukh <niwi@niwi.nz>
|
;; Copyright (c) 2016-2019 Andrey Antukh <niwi@niwi.nz>
|
||||||
|
|
||||||
(ns user
|
(ns user
|
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 |
|
@ -1,7 +1,6 @@
|
||||||
(ns uxbox.tests.helpers
|
(ns uxbox.tests.helpers
|
||||||
(:require
|
(:require
|
||||||
[clojure.spec.alpha :as s]
|
[clojure.spec.alpha :as s]
|
||||||
[buddy.hashers :as hashers]
|
|
||||||
[promesa.core :as p]
|
[promesa.core :as p]
|
||||||
[cuerdas.core :as str]
|
[cuerdas.core :as str]
|
||||||
[mount.core :as mount]
|
[mount.core :as mount]
|
||||||
|
@ -22,7 +21,6 @@
|
||||||
[next]
|
[next]
|
||||||
(let [config (cfg/read-test-config)]
|
(let [config (cfg/read-test-config)]
|
||||||
(-> (mount/only #{#'uxbox.config/config
|
(-> (mount/only #{#'uxbox.config/config
|
||||||
#'uxbox.config/secret
|
|
||||||
#'uxbox.core/system
|
#'uxbox.core/system
|
||||||
#'uxbox.db/pool
|
#'uxbox.db/pool
|
||||||
#'uxbox.services.init/query-services
|
#'uxbox.services.init/query-services
|
Loading…
Add table
Add a link
Reference in a new issue