Disable #1596 test
This commit is contained in:
parent
b6e8f86595
commit
a8e7d35dfa
1 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
(ns babashka.impl.clojure.java.browse-test
|
(ns babashka.impl.clojure.java.browse-test
|
||||||
(:require
|
#_(:require
|
||||||
[babashka.test-utils :refer [bb]]
|
[babashka.test-utils :refer [bb]]
|
||||||
[cheshire.core :as json]
|
[cheshire.core :as json]
|
||||||
[clojure.test :refer [deftest is]]
|
[clojure.test :refer [deftest is]]
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
(def ^:dynamic *http-port* 1234)
|
(def ^:dynamic *http-port* 1234)
|
||||||
|
|
||||||
(deftest browse-url-test
|
#_(deftest browse-url-test
|
||||||
(let [p (promise)
|
(let [p (promise)
|
||||||
stop-server (http/run-server (fn [{:keys [query-string]}]
|
stop-server (http/run-server (fn [{:keys [query-string]}]
|
||||||
(let [params (apply hash-map (mapcat #(.split % "=") (.split query-string "&")))]
|
(let [params (apply hash-map (mapcat #(.split % "=") (.split query-string "&")))]
|
||||||
|
|
@ -22,4 +22,4 @@
|
||||||
(is (= {"arg1" "v1"
|
(is (= {"arg1" "v1"
|
||||||
"arg2" "v2"}
|
"arg2" "v2"}
|
||||||
(deref p 5000 ::timeout)))
|
(deref p 5000 ::timeout)))
|
||||||
(finally (stop-server :timeout 1000)))))
|
(finally (stop-server :timeout 1000)))))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue