ws.test.js 164 B

1234567
  1. (function($) {
  2. $(document).ready(function() {
  3. QUnit.test( "hello test", function( assert ) {
  4. assert.ok( 1 == "1", "Passed!" );
  5. });
  6. });
  7. })(jQuery);