-
Notifications
You must be signed in to change notification settings - Fork 289
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
IFDE and CLJS TDD devleopment environment #359
Comments
Just back from a brief vacation. I do not understand why you want to put together the IFDE with the TDD. TDD already includes the immediate feedback. If you really want to create a new project based on TDD we should crete a leiningen template or a boot template (i.e. https://github.com/seancorfield/boot-new). You could eventually create a new cljs based project using https://github.com/martinklepsch/tenzing as well. HIH. |
Thanks for sharing these links. I prefer the looks of
I revisited the tutorials on TDD. In the TDD task section of tutorial 15 the TDD task is setup to do the automated unit testing without the IFDE. I have this working fine. It is like In the next section A single JVM instance, multiple tasks the IFDE and automated unit testing are combined. It is my attempt at combining these that I am getting that error message with. It would be nice to have both of these running in the same task.
The idea of a boot template is interesting. When this The only unfortunate part is that So maybe as a Docker image like pull request #349 which is a development environment with:
I still have to figure out the issue I had for that pull request. |
I wanted to start applying learnings from working through this very helpful tutorial series. So the first thing I wanted to do was pull out the immediate feedback development environment as well as the test driven development components that can be started up with
boot dev
andboot tdd
.I wanted it without all the other libraries and just a simple minimalist
hello-world
to see that the unit test were working. I also went for the test driven development just for CLJS because I am interested in using CLJS on the backend instead of CLJ.This would be a fresh development environment that I could use to get started with CLJS projects. I also thought that it could potentially be a good contribution to this tutorial series as a branch that others could checkout as they may also want this development environment to start projects with.
So I have put together a first attempt which has
boot dev
working as well as the stand aloneboot tdd
which is not combined withboot dev
. When I try combiningboot dev
andboot tdd
I am running across an issue.Here is what the working
boot dev
looks like:Here is what the stand alone working
boot tdd
looks like.My attempt at combining these looks like this:
Which gives me this error message when I run
boot tdd
:It is working in the browser.
I have pushed this as a branch to my fork of the repository here.
Any suggestions on how to fix this?
The text was updated successfully, but these errors were encountered: