欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  资讯频道

QUnit: jQuery单元测试框架

程序员文章站 2022-03-13 11:43:54
...
QUnit: jQuery单元测试框架

QUnit是jQuery的单元测试框架,推荐使用,通过下面代码测试:

module("Show and Hide");

test("should hide the element when hide is called", function(){
    $("#testDiv").hide();
    // actual, expected
    equals($("#testDiv").css("display"), "none", "The element should be hidden");
});

test("should show the element when show is called", function(){
    // Arrange
    $("#testDiv").css("display", "none");
    // Act
    $("#testDiv").show();
    // Assert
    // actual, expected
    equals($("#testDiv").css("display"), "block", "The element should be visible");

}); 


详细内容请查看:Getting Started With jQuery QUnit for Client-Side Javascript Testing