qUnit对我不起作用

时间:2013-01-04 15:38:55

标签: javascript jquery

<!DOCTYPE html>
<html>
    <head>

        <title>qUnit basic example</title>
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

            <link type="text/css" rel="stylesheet" href="http://jqueryjs.googlecode.com/svn-history/r6606/trunk/jquery/test/data/testsuite.css"/>
    <script src="http://jqueryjs.googlecode.com/svn-history/r5920/trunk/qunit/testrunner.js"></script>
        <script>
            test("a basic test example",function(){
                ok(true,"This test is fine");
                var value="hello";
                equals(value,"hello","We expect value to be hello");
            });


             test("222222222",function(){
                ok(true,"This t fine");
                var value="hello";
                equals(value,"hllo","We eaaaaaaaavalue to be hello");
            });
            </script>
    </head>

    <body>

        <div id="main"></div>
    </body>
</html>

这是我在上面的标记。如果你复制并粘贴它,你将主要测试结果。但是它们是成束的,即它显示了与总假设相比的测试数量的总和。我需要看看断言失败的地方,以及每次测试失败的总成功次数。我怎样才能实现?

1 个答案:

答案 0 :(得分:2)

  1. 请不要使用QUnit版本,以便将其与 VCS进行热链接(甚至不是该VCS中的最新版本!)
  2. 致电您的div [{1}}而不是qunit
  3. 一般情况下,请按照QUnit homepage
  4. 上的说明操作

    这样:

    main