QUnit and jQuery Mobile

QUnit and jQuery Mobile

Hello,
I've played around a bit with QUnit Testing and jqm-1.0a4pre

The jqm css is preventing QUnit to display the result.
  1. .ui-mobile-rendering > * { visibility: hidden; }
is the problematic instruction.

I helped myself by putting
  1. <style type="text/css">
  2. .ui-mobile-rendering > * { visibility: visible !important; }
  3. </style>
Into my test page.

Just writing to help, if anybody got the same problem!

Is anybody testing a jqm application ?