mirror of
https://github.com/penpot/penpot.git
synced 2025-04-06 12:01:19 -05: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"}
|
||||
funcool/promesa {:mvn/version "5.0.0"}
|
||||
funcool/cuerdas {:mvn/version "2.2.1"}
|
||||
|
@ -44,7 +48,7 @@
|
|||
|
||||
mount/mount {:mvn/version "0.1.16"}
|
||||
environ/environ {:mvn/version "1.1.0"}}
|
||||
:paths ["src" "vendor" "resources" "../common"]
|
||||
:paths ["src" "resources" "../common"]
|
||||
:aliases
|
||||
{:dev
|
||||
{:extra-deps
|
||||
|
@ -53,13 +57,14 @@
|
|||
fipp/fipp {:mvn/version "0.6.21"}
|
||||
criterium/criterium {:mvn/version "0.4.5"}
|
||||
mockery/mockery {:mvn/version "0.1.4"}}
|
||||
:extra-paths ["test"]}
|
||||
:extra-paths ["tests"]}
|
||||
|
||||
:repl
|
||||
{:main-opts ["-m" "rebel-readline.main"]}
|
||||
|
||||
:test
|
||||
{:extra-deps {lambdaisland/kaocha {:mvn/version "0.0-565"}}}
|
||||
:tests
|
||||
{:extra-deps {lambdaisland/kaocha {:mvn/version "0.0-565"}}
|
||||
:main-opts ["-m" "kaocha.runner"]}
|
||||
|
||||
: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
|
||||
;; 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>
|
||||
|
||||
(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
|
||||
(:require
|
||||
[clojure.spec.alpha :as s]
|
||||
[buddy.hashers :as hashers]
|
||||
[promesa.core :as p]
|
||||
[cuerdas.core :as str]
|
||||
[mount.core :as mount]
|
||||
|
@ -22,7 +21,6 @@
|
|||
[next]
|
||||
(let [config (cfg/read-test-config)]
|
||||
(-> (mount/only #{#'uxbox.config/config
|
||||
#'uxbox.config/secret
|
||||
#'uxbox.core/system
|
||||
#'uxbox.db/pool
|
||||
#'uxbox.services.init/query-services
|
Loading…
Add table
Reference in a new issue