-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature/clojurescript #11
Closed
Closed
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
d3e797d
clj -> cljc
dazld d0b6559
mv tests to cljc
dazld 1afd475
use real entities in java, fake ones in cljs
dazld 4727ed2
use cljs.test in compose tests
dazld 7e65dc6
add kaocha
dazld bfa71ee
prefer seqable? and explict checks on stringyness, nils etc
dazld 00d6fba
add kaocha test-results to ignore
dazld 04d0810
add ws package for kaocha
dazld 336f070
cross platform now
dazld a81544c
ignore node repl
dazld ad5b5f4
wip cljs
dazld File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,5 @@ pom.xml.asc | |
.lein-failures | ||
.nrepl-port | ||
.cpcache/ | ||
test-results | ||
.cljs_node_repl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
#!/usr/bin/env bash | ||
clojure -A:test -m kaocha.runner "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
{:paths ["src"] | ||
:deps {edn-query-language/eql {:mvn/version "0.0.9"} | ||
aysylu/loom {:mvn/version "1.0.2"}} | ||
:deps {edn-query-language/eql {:mvn/version "0.0.9"} | ||
aysylu/loom {:mvn/version "1.0.2"}} | ||
|
||
:aliases {:provided {:extra-deps {org.clojure/clojure {:mvn/version "1.10.1"} | ||
org.clojure/clojurescript {:mvn/version "1.10.597"}}} | ||
:test {:extra-paths ["test" "dev"] | ||
:extra-deps {com.datomic/datomic-free {:mvn/version "0.9.5697" | ||
:exclusions [joda-time | ||
commons-codec]} | ||
com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner.git" | ||
:sha "f7ef16dc3b8332b0d77bc0274578ad5270fbfedd"}} | ||
:main-opts ["-m" "cognitect.test-runner"]}}} | ||
:extra-deps {lambdaisland/kaocha {:mvn/version "0.0-565"} | ||
lambdaisland/kaocha-cljs {:mvn/version "0.0-59"} | ||
lambdaisland/kaocha-junit-xml {:mvn/version "0.0-70"} | ||
com.datomic/datomic-free {:mvn/version "0.9.5697" | ||
:exclusions [joda-time commons-codec]} | ||
com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner.git" | ||
:sha "f7ef16dc3b8332b0d77bc0274578ad5270fbfedd"}}}}} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"devDependencies": { | ||
"isomorphic-ws": "^4.0.1", | ||
"ws": "^7.0.1" | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#kaocha/v1 | ||
{:tests [{:id :unit | ||
:type :kaocha.type/clojure.test} | ||
{:id :unit-cljs | ||
:type :kaocha.type/cljs}]} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: stray blank line before the shebang