Open j-walker23 opened 9 years ago
I haven't gotten to that yet. If you get it going, please send a pull request!
-----Original Message----- From: "John Walker" notifications@github.com Sent: 6/10/2015 9:09 PM To: "mschoneman/skeleton-navigation-ts" skeleton-navigation-ts@noreply.github.com Subject: [skeleton-navigation-ts] Karma (#1)
Hey, thanks for making this. Its the exact combo i was looking for. gulp - jspm - karma - typescript. I don't see a karma config file though. Is that an error or have you not gotten that far with this yet? Thanks again — Reply to this email directly or view it on GitHub.
Still working on it lol, whenever i finally do i will.
Hey, thanks for making this. Its the exact combo i was looking for. gulp - jspm - karma - typescript.
I don't see a karma config file though. Is that an error or have you not gotten that far with this yet?
Thanks again
Also, cool little thing i noticed when playing with this code. This isn't important but i always thought
__dirname
andprocess.cwd()
would be the same, which now i see makes no sense. Inbuild/tasks/test
you have__dirname + '/../../karma.conf.js'
, which can beprocess.cwd() + '/karma.conf.js'
. I thought this was cool because i can take out the/../../
type stuff i have in lots of places.