gpt4 book ai didi

javascript - 未捕获的 ReferenceError : require is not defined in QUnit test

转载 作者:行者123 更新时间:2023-12-03 20:20:26 26 4
gpt4 key购买 nike

我正在尝试使用 qUnit 测试简单示例。它显示了我的错误

Uncaught ReferenceError: require is not defined in test.js file.



我在 javascript 中使用快速服务器,但没有使用 jQuery。

qunit.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>QUnit Test</title>
<link rel="stylesheet" href="//code.jquery.com/qunit/qunit-1.18.0.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="//code.jquery.com/qunit/qunit-1.18.0.js"></script>
<script src="test/test.js"></script>
</body>
</html>

测试/test.js
QUnit.test( "hello test", function( assert ) {
assert.ok( 1 == "1", "Passed!" );
});

最佳答案

包裹 Qunit.test 里面 Qunit.module

QUnit.module('qunit testing', function () {
QUnit.test( "hello test", function( assert ) {
assert.ok( 1 == "1", "Passed!" );
});
});

关于javascript - 未捕获的 ReferenceError : require is not defined in QUnit test,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30159223/

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