1

如何测试自定义 JavaScript 应用程序(包括 jQuery 作为依赖项)?我已经尝试将 jQuery 作为 Node 包但没有成功...

我是否需要在测试套件依赖项中以某种方式定义它?我试过这个:

define([
    'intern!bdd',
    'intern/chai!expect',
    'node-jquery'
], ...
4

1 回答 1

3

你在正确的轨道上。如果您尝试加载和测试任意 JavaScript,您只需这样做:

define([
  'intern!bdd',
  'intern/chai!expect',
  'libs/jquery.js',
  'app/foo.js',
  'app/bar.js'
], function (bdd, expect) {
  bdd.describe('my test', function () {
    bdd.it('should find foos on the page', function () {
      expect(jQuery('.foo')).to.have.length.of.at.least(2);
    });
  });

  // access other global variables here
});
于 2013-05-02T23:21:31.087 回答