Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 JavaScript 很陌生,想知道在为 JavaScript 库编写测试时包含依赖项(例如 Jasmine、jQuery)的标准/推荐方式是什么?我使用 Jasmine 作为测试框架 FWIW。例如,是否建议在源代码树中包含依赖的库?
我建议您首先通过<script>标签将依赖项包含在 HTML 运行程序文件中。这不是唯一的方法,但它会让您比任何其他方法更快地开始。
<script>
此外,由于您刚刚开始,您可能还想考虑尝试摩卡。这是一个示例 mocha runner:
http://visionmedia.github.com/mocha/example/tests.html