gpt4 book ai didi

javascript - 在实习生测试中包含 jQuery

转载 作者:行者123 更新时间:2023-11-30 13:04:05 25 4
gpt4 key购买 nike

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

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

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

最佳答案

您走在正确的轨道上。如果您尝试加载和测试任意 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
});

关于javascript - 在实习生测试中包含 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16349046/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com