JavaScript
文章平均质量分 77
dacxu
这个作者很懒,什么都没留下…
展开
-
QUnit源码阅读(2):test基本执行流程
// 直接上代码//step 1: write a simple test as the following. test("hello test", function() { ok(1 == "1", "Passed!"); }); //step 2: 调用test函数 QUnit = { //... test : function(testName, e原创 2014-02-17 16:02:28 · 887 阅读 · 0 评论 -
QUnit源码阅读(1):工具函数
QUnit 是 JavaScript单元测试框架。更加具体的介绍ref: http://qunitjs.com/ 下面是QUnit中的一段代码: (function() { function F() {} F.prototype = QUnit; QUnit = new F(); // Make F QUnit's constructor so th原创 2014-02-17 16:02:26 · 852 阅读 · 0 评论 -
QUnit源码阅读(3):asyncTest基本执行流程
//asyncTest, QUnit中的异步测试,具体参考QUnit官方文档。//直接上代码//step 1: write a simple asyncTest as the following. asyncTest("asynchronous test: one second later!", function() { expect(1); setTimeout(fun原创 2014-02-17 16:02:30 · 1430 阅读 · 0 评论