Vue Test Utils でモーダルのテスト
MochaとChaiでVue Test Utilsを書いています。
BuefyのComponent Modalが表示されているかどうかをテストを書きたいのですが、どう書けば良いでしょうか。
コンポーネント:
<template>
<section>
<button class="button is-primary is-medium"
@click="isComponentModalActive = true">
Launch component modal
</button>
<b-modal :active.sync="isComponentModalActive" has-modal-card>
<modal-form v-bind="formProps"></modal-form>
</b-modal>
</section>
</template>
//...略
テスト:
const wrapper = shallowMount(ComponentModal);
const button = wrapper.find('.button')
button.trigger('click');
expect( //...ここの書き方がわかりません