gpt4 book ai didi

javascript - 如何在 Mocha/Chai 中测试 JS 原型(prototype)(非模块)?

转载 作者:行者123 更新时间:2023-11-28 20:30:29 25 4
gpt4 key购买 nike

我想为我正在构建的项目设置测试。在我能找到的示例中,他们都说包括相关代码以进行测试是通过 require 语句完成的:require('foo');。但是,我的项目不是构建在模块中,而是构建在 ES6 类中,然后将这些类转换为 ES5 原型(prototype)。

我想知道如何包含文件?

例如 ES6 类:

class Foo {
constructor() {
// do things
}
}

大致翻译为:

// ES5 compatible code is here (_classCallCheck etc).
var Foo = (function () {
function Foo() {
_classCallCheck(this, Foo);

// do things
}
}

我想知道如何将它包含在我的测试文件中:

var expect   = require('chai').expect;
// how to require or whatever else here?

describe('Foo', function() {
it('creates an Foo object', function() {
var foo = new Foo({});
});
});

最佳答案

如果你不使用模块,你可以像这样为你的测试创建一个简单的 html 页面:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>your tests</title>
<link rel="stylesheet" media="all" href="vendor/mocha.css">
</head>
<body>
<div id="mocha"><p><a href=".">Index</a></p></div>
<div id="messages"></div>
<div id="fixtures"></div>
<script src="vendor/mocha.js"></script>
<script src="vendor/chai.js"></script>
<script src="your_files.js"></script>
<script src="your_files_test.js"></script>
<script>mocha.run();</script>
</body>
</html>

有了这个,你就不需要在你的测试文件中要求什么了。

如果您想了解更多信息:article

希望对你有帮助。

关于javascript - 如何在 Mocha/Chai 中测试 JS 原型(prototype)(非模块)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29475798/

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