使用 Visual Studio 2010 设置 jsTestDriver

发布于 2024-12-11 12:23:58 字数 963 浏览 0 评论 0原文

我正在按照本教程使用 Visual Studio 2010 设置 jsTestDriver:

http://slmoloch.blogspot.com/2009/08/how-to-run-jstestdriver-with-visual_02.html

我管理启动 jsTestDriver 服务器并捕获浏览器,但是当我尝试运行示例测试时,我收到以下错误:

java.lang.RuntimeException: Oh Snap! No server defined!
    at com.google.jstestdriver.config.DefaultConfiguration.getServer(DefaultConfiguration.java:57)
    at com.google.jstestdriver.config.Initializer.initialize(Initializer.java:97)
    at com.google.jstestdriver.JsTestDriver.runConfigurationWithFlags(JsTestDriver.java:259)
    at com.google.jstestdriver.JsTestDriver.runConfiguration(JsTestDriver.java:211)
    at com.google.jstestdriver.JsTestDriver.main(JsTestDriver.java:144)
Unexpected Runner Condition: Oh Snap! No server defined!
 Use --runnerMode DEBUG for more information.

作为一个完全的菜鸟,我真的不知道从哪里开始调试它。

Am following this tutorial to set up jsTestDriver with Visual Studio 2010:

http://slmoloch.blogspot.com/2009/08/how-to-run-jstestdriver-with-visual_02.html

I manage to start the jsTestDriver server and capture a browser but when i try and run the example tests i get the following error:

java.lang.RuntimeException: Oh Snap! No server defined!
    at com.google.jstestdriver.config.DefaultConfiguration.getServer(DefaultConfiguration.java:57)
    at com.google.jstestdriver.config.Initializer.initialize(Initializer.java:97)
    at com.google.jstestdriver.JsTestDriver.runConfigurationWithFlags(JsTestDriver.java:259)
    at com.google.jstestdriver.JsTestDriver.runConfiguration(JsTestDriver.java:211)
    at com.google.jstestdriver.JsTestDriver.main(JsTestDriver.java:144)
Unexpected Runner Condition: Oh Snap! No server defined!
 Use --runnerMode DEBUG for more information.

Being a total noob to this i don't really know where to start debugging this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

满意归宿 2024-12-18 12:23:58

好吧,我遇到了同样的问题。

好吧,我可以轻松地使用另一个示例项目的命令行来运行它,所以我想了一下,发现这是因为找不到 jsTestDriver.conf 。

因此,将文件 jsTestDriver.conf 移动到我的项目的根目录解决了问题,希望这会有所帮助。如果这不能解决问题,请查看项目所在的位置,并将文件移动几次,它最终会起作用!

Ok, I ran into the same problem.

Well, I can easily run this with command line with another sample project, so I thought about it and discovered that it is because the jsTestDriver.conf was not found.

Thus moving the file jsTestDriver.conf to the root of my project solved the problem, hope this helps. If that doesn't fix it, look at where the project is at, and move the file around a few times, it will end up working!

自演自醉 2024-12-18 12:23:58

为了解决这个问题,我必须将文件(jsTestDriver.conf 和所有 *.js 文件)保存为 US-ASCII - 代码页 20127。通常 Visual Studio 使用 Unicode(带有签名的 UTF-8) - 代码页 65001。可以通过“文件”>“更改设置”高级保存选项...

In order to solve this problem, I had to save the files, both jsTestDriver.conf and all *.js files, as US-ASCII - Codepage 20127. Normally Visual Studio uses Unicode (UTF-8 with signature) - Codepage 65001. This setting can be changed via File > Advanced Save Options...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文