-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. 古いVCSからホットリンクするほど古いバージョンの QUnit を使用しないでください(その VCS の最新リビジョンでさえも!)
  2. あなたのdivを呼び出さqunitないでくださいmain
  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 に答える