Created
October 14, 2015 15:52
-
-
Save bensu/a8901162387c3340fb8e to your computer and use it in GitHub Desktop.
Running tests from the Figwheel 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
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