我目前正在为大型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>