前端之家收集整理的这篇文章主要介绍了
php – Laravel 5.5和Vue.js刀片测试,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的刀片中有以下
内容……
<div>
<contact-form></contact-form>
</div>
@H_
502_3@我想测试以确保Vue.js组件始终在我的测试中安装…
public function testRoute()
{
$this->visit('/');
//stuck here
}
@H_
502_3@基本上我期待测试刀片具有< contact-form>.我该怎么办?
使用assertSee
@H_502_3@Assert that the given string is contained within the response
$this
->visit('/')
->assertSee('<contact-form>')
->assertSee('</contact-form>');
@H_
502_3@查看更多laravel 5.5测试断言
here
@H_
502_3@或者如果你想深入了解客户端浏览器测试,请看
Laravel Dusk,它有assertSourceHas
方法.
原文链接:https://www.f2er.com/laravel/130529.html