jsUnit plugin
Dependency :
compile ":jsunit:0.7"
Summary
Description
grails-jsunit provides an easy and convenient way to utilize the JsUnit framework to your grails application. JsUnit allows you to unit test JavaScript functions in a similar way to using JUnit for Java.
This plugin adds the following new scripts:
creates
or, if the executable is on the path you would just need
In your application.properties, you can specify:
When executing this script, it overwrites ${basedir}/test/jsunit/suiteAll.html to build a suite that references all tests in ${basedir}/test/jsunit/test.
Please create issues in JIRA if you encounter problems.To install the plugin, use:
grails install-plugin jsunit
create-jsunit-test
Generates a new empty jsunit test. Supply the path of the test you want to create, relative to 'test/jsunit/tests'.Example use:grails create-jsunit-test registration/mytest
${basedir}/test/jsunit/tests/registration/mytest.htmlrun-jsunit
Runs JsUnit in the specified browser. Specify the path to your browser as a command line parameter i.e.grails run-jsunit /usr/bin/firefox
grails run-jsunit firefox
jsunit.autoRun=true