Re: Testing JS

2014-08-12 Thread Pierre Goupil
Wow, that makes a few interesting things! Thanks! :-) Pierre On Tue, Aug 12, 2014 at 9:47 AM, Martin Grigorov wrote: > Hi, > > For Wicket's JS we use QUnit. > https://github.com/apache/wicket/tree/master/testing/wicket-js-tests is a > Maven module responsible to execute the unit tests. It use

Re: Testing JS

2014-08-12 Thread Martin Grigorov
Hi, For Wicket's JS we use QUnit. https://github.com/apache/wicket/tree/master/testing/wicket-js-tests is a Maven module responsible to execute the unit tests. It uses https://github.com/eirslett/frontend-maven-plugin to download Node.js and to execute Grunt. See http://wicketinaction.com/2014/07/

Testing JS

2014-08-11 Thread Pierre Goupil
Good evening, Are there any good practices or known solutions in order to test the JavaScript of a Wicket application? For the moment, I launch my tests in the Wicket pages in Jenkins, with a flag telling whether to display them or not depending upon the staging plateform: they are hidden in prod

testing JS in WicketTester

2010-03-26 Thread Pierre Goupil
Good morning, Is there any way to test JavaScript code in WicketTester? I know of Selenium-based solutions, but I think that's too much heavyweight. Plus, I'd really like to unit test my rendering & JS behavior. In a similar way than with YUI test, but for my homegrown JS. A recommandation, anyon