有没有办法运行水豚服务器?
我正在寻找一种方法来使用硒和水豚进行黄瓜测试,以在每次运行测试时跳过服务器的启动。有没有办法让 is 在后台启动并保持运行并在每次测试运行时附加到它?
I am looking for a way to get my cucumber test with selenium and capybara to skip the startup of the server on each run of the test. Is there a way to let is startup in the background and stay running and attach to it on each test run?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过使用 Spork 吗? https://github.com/timcharper/spork
它基本上会在每次运行时分叉服务器的副本您的测试,但不需要每次都重新启动整个 Rails 环境,因此如果您有大型 Rails 应用程序,可以节省大量时间。
Have you tried using Spork? https://github.com/timcharper/spork
It basically forks a copy of your server each time you run your tests but doesn't require it to restart the whole Rails environment every time so saves you huge amounts of time if you have a large Rails app.