php – Laravel 5.5和Vue.js刀片测试

前端之家收集整理的这篇文章主要介绍了php – Laravel 5.5和Vue.js刀片测试前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的刀片中有以下内容……
  1. <div>
  2. <contact-form></contact-form>
  3. </div>

我想测试以确保Vue.js组件始终在我的测试中安装…

  1. public function testRoute()
  2. {
  3. $this->visit('/');
  4. //stuck here
  5. }

基本上我期待测试刀片具有< contact-form>.我该怎么办?

使用assertSee

Assert that the given string is contained within the response

  1. $this
  2. ->visit('/')
  3. ->assertSee('<contact-form>')
  4. ->assertSee('</contact-form>');

查看更多laravel 5.5测试断言here

或者如果你想深入了解客户端浏览器测试,请看Laravel Dusk,它有assertSourceHas方法.

猜你在找的Laravel相关文章