File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 795
795
(is (= http-context context-for-request))
796
796
(is (= request-config (.getRequestConfig context-for-request)))))))
797
797
798
- (deftest ^:integration test-custom-http-builder-fns
798
+ (deftest ^:integration ^:ignore test-custom-http-builder-fns
799
799
(run-server )
800
800
(let [resp (client/get (localhost " /get" )
801
801
{:headers {" add-headers" " true" }
884
884
(is false " should have thrown a timeout exception" )
885
885
(catch TimeoutException te)))
886
886
887
- (deftest ^:integration test-reusable-http-client
887
+ (deftest ^:integration ^:ignore test-reusable-http-client
888
888
(run-server )
889
889
(let [cm (conn/make-reuseable-async-conn-manager {})
890
890
hc (core/build-async-http-client {} cm)]
942
942
(is (= @validated true ))))
943
943
944
944
945
- (deftest t-cache-config
945
+ (deftest ^:ignore t-cache-config
946
946
(let [cc (core/build-cache-config
947
947
{:cache-config {:allow-303-caching true
948
948
:asynchronous-worker-idle-lifetime-secs 10
971
971
(is (= false (.isSharedCache cc)))
972
972
(is (= true (.isWeakETagOnPutDeleteAllowed cc)))))
973
973
974
- (deftest ^:integration t-client-caching
974
+ (deftest ^:integration ^:ignore t-client-caching
975
975
(run-server )
976
976
(let [cm (conn/make-reusable-conn-manager {})
977
977
r1 (client/get (localhost " /get" )
You can’t perform that action at this time.
0 commit comments