Noah Bogart
Noah Bogart
OrderedMap doesn't implement `ITransientAssociative2` (which the `clojure.core` transient maps do), so using `contains?` or `find` on a transient OrderedMap throws a `contains? not supported on type: flatland.ordered.map.TransientOrderedMap` error.
Problem: When determining if a key exists in the backing map, we rely on matching the value against `:flatland.ordered.map/not-found`, which _probably_ won't be in backing map but could. By relying...
Hey Peter! I'm using [timbre](https://github.com/ptaoussanis/timbre) (v5.2.1) and running into an issue where `with-merged-config` doesn't do what I expect. I've traced the potential issue back to `encore/nested-merge`: ```clojure (encore/nested-merge {:allow "*"...
In [collection.clj](https://github.com/michaelklishin/monger/blob/f30a3926e076898e165545c47225b782d79ae822/src/clojure/monger/collection.clj), `insert`, `find`, etc all hint `coll` as a `String`: `[^DB db ^String coll]` even tho their implementation calls `name` on the `coll`. Clojure doesn't use this type hint...
Hey friends, I'm interested in a reporter that does not print anything except for the summary at the end. I would ideally also like a leading "Starting test run" so...
Would it be possible to have an option to silence this warning? https://github.com/lambdaisland/kaocha/blob/e20309949256bbfc5b5c90d6d1ebb3bae7b62241/src/kaocha/plugin/filter.clj#L49-L50 I'm setting up kaocha as our company-wide test runner and most of the time folks won't be...
Hey friends! I was a little confused about how to best write a `tests.edn` config that uses `#include` while also relying on the `#kaocha/v1` transformer. Given `tests.edn`: ```clojure #kaocha/v1 {:capture-output?...
## Set up A csv file titled "example.csv" that contains: ``` first-column,second-column X,1 ``` A clojure file called `example/csv.clj` that contains: ```clojure (ns example.csv (:require [semantic-csv.core :as sc])) (defn manually-cast-columns...
Hey there! Love the website. When i use this on my iPhone, if I click on a link and then press the Back button, my scroll position resets to the...
Closes #17.