-1
<!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>

这是我上面的标记。如果您复制并粘贴它,您将主要查看测试的结果..但是它们是捆绑在一起的,即它显示了测试总数与假货总数的比较。我需要查看断言失败的位置,以及每次测试失败的总成功次数。我怎样才能做到这一点?

4

1 回答 1

2
  1. 不要使用太旧的 QUnit 版本,以至于您从VCS 热链接它(甚至不是该 VCS 中的最新版本!)
  2. qunit不要打电话给你的divmain
  3. 一般来说,请按照QUnit 主页上的说明进行操作

这样的:

<link type="text/css" rel="stylesheet"
    href="http://code.jquery.com/qunit/qunit-git.css">
<script src="http://code.jquery.com/qunit/qunit-git.js"></script>
<!-- etc -->
<div id="qunit"></div>
于 2013-01-04T15:46:34.393 回答