php – Laravel 5.5和Vue.js刀片测试
发布时间:2020-09-01 05:23:34 所属栏目:PHP 来源:互联网
导读:我的刀片中有以下内容…… div contact-form/contact-form/div 我想测试以确保Vue.js组件始终在我的测试中安装… public function testRoute(){ $this-visit(/); //stuck here} 基本上我期待测试刀片具有 contact-form.我该怎么办? 使用assert
我的刀片中有以下内容…… <div> <contact-form></contact-form> </div> 我想测试以确保Vue.js组件始终在我的测试中安装… public function testRoute() { $this->visit('/'); //stuck here } 基本上我期待测试刀片具有< contact-form>.我该怎么办? 使用assertSee
$this ->visit('/') ->assertSee('<contact-form>') ->assertSee('</contact-form>'); 查看更多laravel 5.5测试断言here 或者如果你想深入了解客户端浏览器测试,请看Laravel Dusk,它有assertSourceHas方法. (编辑:甘南站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |