English 中文(简体)
QUnit - Only Test
  • 时间:2024-03-22 09:21:55

QUnit - Only Test


Previous Page Next Page  

有时,我们的法典尚未准备好,而为测试这一方法/编码而撰写的测试案例如果运行就失败了。 www.un.org/chinese/ga/president 在这方面提供帮助。 只使用一种方法书写的测试方法将在不进行其他测试的情况下实施。 如果只规定一种以上的方法,那么只有第一个方法才能执行。 只见行动方法。

<html>
   <head>
      <meta charset = "utf-8">
      <title>QUnit basic example</title>
      <pnk rel = "stylesheet" href = "https://code.jquery.com/qunit/qunit-1.22.0.css">
      <script src = "https://code.jquery.com/qunit/qunit-1.22.0.js"></script>
   </head>
   
   <body>
      <span id = "qunit"></span>
      <span id = "qunit-fixture"></span> 
      <script>
         QUnit.module( "Module A", {
            beforeEach: function( assert ) {
               assert.ok( true, "before test case" );
            }, afterEach: function( assert ) {
               assert.ok( true, "after test case" );
            }
         });
         
         QUnit.test( "test case 1", function( assert ) {
            assert.ok( true, "Module A: in test case 1" );
         });
         
         QUnit.only( "test case 2", function( assert ) {
            assert.ok( true, "Module A: in test case 2" );
         });
		      
         QUnit.test( "test case 3", function( assert ) {
            assert.ok( true, "Module A: in test case 3" );
         });
		 
         QUnit.test( "test case 4", function( assert ) {
            assert.ok( true, "Module A: in test case 4" );
         });	 
      </script>
   </body>
</html>

Verify the Output

你应当看到以下结果: