QUnit是jQuery的单元测试框架。 QUnit 1.16 发布,此版本是个重要的版本,引入了一些新 APIs,默认在 QUnit 2.0 使用。 新 APIs 概览: QUnit.test( "assert.async() test", function( assert ) { var done = assert.async(); var input = $( "#test-input" ).focus(); setTimeout(function() { assert.equal( document.activeElement, input[0], "Input was focused" ); done(); }); }); 此外,QUnit 1.16 包括一些新特性和改进: Promise support QUnit.skip testId URL parameter CommonJS exports 其他改进请看 check out the changelog 发布计划 后续版本改进计划: Standardized reporter interface Better diff output Better support for writing custom assertions Support for nested modules QUnit 团队 从左往右: Jörn Zaefferer, Timo “Krinkle” Tijhof, James M. Greene, and Leonardo Balter QUnit 1.16 发布,附发布计划下载地址