LoginSignup
0
0

More than 5 years have passed since last update.

QUnitのメモ

Posted at

概要

JQueryのテストツールを調べたみる ※逐次更新

最小環境

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>QUnit Example</title>
    <link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-1.17.1.css">
  </head>
  <body>
    <div id="qunit"></div>
    <div id="qunit-fixture"></div>
    <script src="https://code.jquery.com/qunit/qunit-1.17.1.js"></script>
    <script>
      QUnit.test( "hello test", function( assert ) {
        assert.ok( 1 == "1", "通ったよ" );
        assert.ok( 1 == "2", "通らないよ" );
      } );
    </script>
  </body>
</html>

デモ
http://codepen.io/YamasakiKenta/pen/OPqPgV

参考
http://blog.mwsoft.jp/article/115089548.html

非同期

参考
http://dev.classmethod.jp/etc/javascript_testing_framework_qunit-3/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0