如何为组件内部的组件编写vue-jest测试?

时间:2019-01-21 13:30:38

标签: vue.js jestjs vue-component

我目前正在为大型vue项目编写一些测试。在一个组件(例如,表单标题)中,我调用具有某些属性的另一个组件。是否可以在另一个组件中测试该组件,或者我必须单独对其进行测试?

<template>
  <h1>Title</h1>
  <div class="container">
    <form-header
      :title="title"
      :visible="visible"> // I want to write a test if header is visible
    </form-header>
  </div>
</template>

<script></script>
<style></style>

0 个答案:

没有答案