jsUnit plugin

Last updated by prule 1 year ago
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.

Please create issues in JIRA if you encounter problems.

To install the plugin, use:

grails install-plugin jsunit
This plugin adds the following new scripts:

create-jsunit-test

Generates a new empty jsunit test. Supply the path of the test you want to create, relative to 'test/jsunit/ext'.

Example use:

grails create-jsunit-test registration/mytest
creates
${basedir}/test/jsunit/ext/registration/mytest.html

run-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
or, if the executable is on the path you would just need
grails run-jsunit firefox
or
grails run-jsunit google-chrome
In your application.properties, you can specify:
jsunit.autoRun=true
When executing this script, it overwrites ${basedir}/test/jsunit/suiteAll.html to build a suite that references all tests in ${basedir}/test/jsunit/ext.

Reference

History

April 2010 grails-jsunit-0.7 upgrade for grails-1.2.2