This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-02-19
Channels
- # beginners (25)
- # boot (143)
- # braid-chat (9)
- # cider (18)
- # cljs-dev (88)
- # cljsrn (1)
- # clojure (91)
- # clojure-austin (2)
- # clojure-berlin (3)
- # clojure-japan (26)
- # clojure-russia (148)
- # clojurebridge (1)
- # clojured (29)
- # clojurescript (105)
- # cursive (7)
- # data-science (4)
- # datomic (15)
- # devcards (4)
- # emacs (8)
- # euroclojure (2)
- # events (1)
- # gsoc (27)
- # hoplon (3)
- # immutant (3)
- # ldnclj (3)
- # lein-figwheel (9)
- # leiningen (2)
- # luminus (1)
- # off-topic (5)
- # om (176)
- # onyx (136)
- # parinfer (16)
- # proton (13)
- # re-frame (33)
- # reagent (34)
- # spacemacs (1)
- # yada (127)
@chrisoakman: Heads up, some big changes to code organisation in parinfer-jvm
It all uses Gradle now and is in a single module, which avoids needing to install to run the unit tests.
Returning changed lines
1) indent mode: single change
2) indent mode: multiple changes
3) paren mode: single change
4) paren mode: multiple changes
67 passing (33ms)
4 failing
1) Returning changed lines indent mode: single change:
TypeError: undefined is not a function
at checkLines (test/extras.js:37:10)
at Context.<anonymous> (test/extras.js:41:51)
2) Returning changed lines indent mode: multiple changes:
TypeError: undefined is not a function
at checkLines (test/extras.js:37:10)
at Context.<anonymous> (test/extras.js:42:51)
3) Returning changed lines paren mode: single change:
TypeError: undefined is not a function
at checkLines (test/extras.js:37:10)
at Context.<anonymous> (test/extras.js:44:51)
4) Returning changed lines paren mode: multiple changes:
TypeError: undefined is not a function
at checkLines (test/extras.js:37:10)
at Context.<anonymous> (test/extras.js:45:51)
npm ERR! Test failed. See above for more details.
~/d/p/lib (master)> git status
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean
~/d/p/lib (master)>
parinfer 1.6.1 published, fixes the bug that @sekao reported
@cfleming: thanks for report, looks like a node version problem
assert.deepStrictEqual
probably wasn’t available in older versions
I’m running node v5.2, locally and on travis-ci
@shaunlebron: Looks like that was it, thanks - an upgrade and some faffing around later and it’s working.
well, it’s the infamous JS error undefined is not a function
that only becomes clear after years of seeing it
luckily v8 solved that in chrome a year ago and I think node v4 might have it, and v5 definitely does.
This seems relevant: https://pbs.twimg.com/media/Cbh6dV7UUAAVZ-y.png