<div> <contact-form></contact-form></div>
我想测试以确保Vue.Js组件始终在我的测试中安装…
public function testRoute(){ $this->visit('/'); //stuck here}
基本上我期待测试刀片具有< contact-form>.我该怎么办?
使用assertSeeAssert that the given string is contained within the response
$this ->visit('/') ->assertSee('<contact-form>') ->assertSee('</contact-form>');
查看更多laravel 5.5测试断言here
或者如果你想深入了解客户端浏览器测试,请看Laravel Dusk,它有assertSourceHas方法.
总结以上是内存溢出为你收集整理的php – Laravel 5.5和Vue.js刀片测试全部内容,希望文章能够帮你解决php – Laravel 5.5和Vue.js刀片测试所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)