我正在使用Visual Studio代码,量角器,Typescript和Jasmine框架。我在“ it”块中有规格测试用例。
要查看所有测试用例或其阻止,我已经安装了“ Jasmine Test Explorer” 和“ Jasmine Explorer UI”,但未列出测试用例。
您能帮我解决这个问题吗?
答案 0 :(得分:1)
这是一个可能的解决方案:
创建一个指向您的配置文件的设置(例如,在.vscode/settings.json
中):
{
"jasmineExplorer.config": "jasmine.json",
...
}
在jasmine.json
文件中,您告诉资源管理器规范的位置。这是一个示例:
{
"spec_dir": "site/dist/tests",
"spec_files": ["**/*[sS]pec.js"],
"helpers": ["helpers/**/*.js"],
"random": false,
"seed": null,
"stopSpecOnExpectationFailure": false
}
答案 1 :(得分:1)