1

目前我有这个,取自一篇博客文章和主应用程序的原始 requirejs 主脚本:

require.config({

    baseUrl: 'js',

    paths: {
        domReady:       'lib/domReady',
        jquery:         'lib/jquery-1.10.2',
        bootstrap:      'lib/bootstrap',
        backbone:       'lib/backbone',
        underscore:     'lib/underscore',
        text:           'lib/text',
        raphael:        'lib/raphael',
        raphaelPlugins: 'lib/raphael.plugins',
        paper:          'lib/paper-full',
        kinetic:        'lib/kinetic-v4.6.0',
        fabric:         'lib/fabric'
    },

    shim: {

        'jquery': {
            exports: '$'
        },

        'bootstrap': {
            deps: ['jquery']
        },

        'backbone': {
            deps: ['underscore', 'jquery'],
            exports: 'Backbone'
        },

        'underscore': {
            exports: '_'
        },

        'fabric': {
            exports: 'fabric'
        },

        'raphaelPlugins': {
            deps: ['raphael']
        },

        'router': {
            deps: ['jquery', 'underscore', 'backbone', 'bootstrap', 'text']
        }

    }

});

require([
    'tests/core.test',
    'tests/models/header.test'
], function () {
    QUnit.start();
});

问题是它只运行传递给它的数组中的第一个测试。我该如何更改它以使其全部运行?

此外,如何让它为每个单独的测试加载“路由器”的所有依赖项?

4

1 回答 1

0

要加载路由器依赖项,请将路由器作为依赖项添加到测试文件

我认为第二个文件中的所有测试都应该自动运行。如果没有,可能会有一些东西停止测试。是否有任何异步测试?

我有一个旧博客,其中包含一些关于 qunit 的代码,并且需要可能有帮助的 js。 http://naheece.wordpress.com/2012/12/15/qunit-acceptance-test-framework-with-iframe-require-js-and-jquery-simulate/

于 2013-09-20T16:10:34.430 回答