我是BDD的新手,但我的问题是即使我的所有测试方案都失败了,我可以看到它们在浏览器上运行。 所以我猜Behat必须指向一个我无法弄清楚的错误的URL。我的behat.yml内容是:
default:
extensions:
Laracasts\Behat\ServiceContainer\BehatExtension: ~
Behat\MinkExtension\ServiceContainer\MinkExtension:
base_url: http://localhost/omw/public
default_session: laravel
laravel: ~
可能是为什么像
那样进行测试的原因Feature: Testing
为了理解Behat 作为开发人员
场景:主页
When I go to "/"
Then I should see "hello"
应该失败吗?