0

Were doing some TDD at uni and I'm wondering if it is easy enough to get continuous integration with a tool like Jenkins or Bamboo for a javascript based app using the Play Framework (with a tiny bit of Scala) and looking to use testing frameworks like Jasmine (and for the scala scalatest or JUnit)?

i found this post which describes a way to set CI up with Jasmine:Guard and Jenkins.

jsky
  • 2,225
  • 5
  • 38
  • 54

2 Answers2

0

This plugin integrates Jasmine with Play.
This one integrates Jenkins with Play.

jsky
  • 2,225
  • 5
  • 38
  • 54
0

There is an SBT plugin for Jasmine. I used it recently with Play 2.2.3 based on this excellent guide by Pere Villega and was able to run the Jasmine tests together with the other tests using play test. You should be able to execute them this way using a CI server without much effort.

stempler
  • 750
  • 6
  • 15
  • yes, were looking at installing this too. this allows Jasmine to integrate with Play, but does it offer CI? – jsky Aug 23 '14 at 02:56