我将 Backbone.js 和 RequireJs 用于单页应用程序。
当我运行我的业力测试时,没有包含 css。调试时很难知道发生了什么或为什么某些东西不工作,因为 html 元素的样式不像在生产应用程序中那样。
在使用 webstorm 进行调试时,是否可以在 karma 测试中包含 css?
我已经尝试在 files 数组中包含所有 css
files: [
{pattern: 'app/css/*.css', included: false},
...
],
这是包含在生产应用程序的 index.html 中的 css 文件,我无法在业力配置中找到添加这样的内容。
<link rel="stylesheet" href="css/styles.css" />