zoukankan      html  css  js  c++  java
  • ember.js:使用笔记8 加载测试与集成测试

    emberjs使用的测试工具为qunit.js:

    加载:将runner.js添加到Index.html;大致内容:

    if (window.location.search.indexOf("?test") !== -1) {
      document.write(
        ‘<div id="qunit"></div>' +
        '<div id="qunit-fixture"></div>' +
        '<div id="ember-testing-container">' +
        '  <div id="ember-testing"></div>' +
        '</div>' +
        '<link rel="stylesheet" href="/assets/tests/runner.css">' +
        '<link rel="stylesheet" href="/assets/tests/vendor/qunit-1.15.0.css">' +
        '<script src="/assets/tests/vendor/qunit-1.15.0.js"></script>' +
        '<script src="/assets/tests/tests.js"></script>'
      )
    }
    

    其中ember-testing是显示原本页面的部分,通过runner.css来设置;在原本页面中将在url最后添加"?test"跳转到测试页面;

    test.js的基本结构:

    App.rootElement = '#ember-testing';
    
    App.setupForTesting();
    App.injectTestHelpers();
    
    function exists(selector) {
      return !!find(selector).length;
    }
    
    

    integration-testing 可参考: web  web

     基本结构:

    module("Integration tests", {
      setup: function() {
        // before each test, ensure the application is ready to run.
        Ember.run(App, App.advanceReadiness);
      },
    
      teardown: function() {
        // reset the application state between each test
        App.reset();
      }
    });
    
    test("Check Graph and links in index page", function() {
      visit("/");
      andThen(function() {
        ok(exists("*"), "Found HTML!");
      });
       
    });
    

      

  • 相关阅读:
    【Redis】跳跃表原理分析与基本代码实现(java)
    小鹤音形指引
    Maven
    算法思维(长期更)
    多路平衡树之红黑树
    多路平衡树之B树
    多路平衡树之2-3查找树
    栈与队列
    树基本概念
    Vue学习
  • 原文地址:https://www.cnblogs.com/jinkspeng/p/4028927.html
Copyright © 2011-2022 走看看