Skip to content

Instantly share code, notes, and snippets.

@bensu
Created October 14, 2015 15:52
Show Gist options
  • Save bensu/a8901162387c3340fb8e to your computer and use it in GitHub Desktop.
Save bensu/a8901162387c3340fb8e to your computer and use it in GitHub Desktop.
Running tests from the Figwheel REPL
cljs.user=> (cljs.test/run-tests 'sc-repo.core)
Testing sc-repo.core
Ran 1 tests containing 1 assertions.
0 failures, 0 errors.
nil
cljs.user=> (in-ns 'sc-repo.core)
nil
sc-repo.core=> (cljs.test/run-tests 'sc-repo.core)
Testing sc-repo.core
Ran 1 tests containing 1 assertions.
0 failures, 0 errors.
nil
sc-repo.core=> (ns sc-repo.core)
sc-repo.core=> (cljs.test/run-tests 'sc-repo.core)
Testing sc-repo.core
Ran 1 tests containing 1 assertions.
0 failures, 0 errors.
nil
sc-repo.core=>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment