From 56ea820aaa98ad511f9318ae830fddac90d01af1 Mon Sep 17 00:00:00 2001 From: JazzarKarim Date: Wed, 20 Dec 2023 14:50:18 -0800 Subject: [PATCH] Updated in response to Sev's comments --- src/views/AmalgamationSelection.vue | 6 +++--- tests/unit/EntityMenu.spec.ts | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/views/AmalgamationSelection.vue b/src/views/AmalgamationSelection.vue index 878c7ba3a..eef17efce 100644 --- a/src/views/AmalgamationSelection.vue +++ b/src/views/AmalgamationSelection.vue @@ -27,7 +27,7 @@

Horizontal short-form amalgamation @@ -63,7 +63,7 @@

Vertical short-form amalgamation @@ -99,7 +99,7 @@

Regular long-form amalgamation diff --git a/tests/unit/EntityMenu.spec.ts b/tests/unit/EntityMenu.spec.ts index 61b4de5c8..b38fa6d5e 100644 --- a/tests/unit/EntityMenu.spec.ts +++ b/tests/unit/EntityMenu.spec.ts @@ -295,6 +295,7 @@ describe('Entity Menu - View and Change Business Information click tests', () => describe('Entity Menu - Amagamate button tests', () => { it('displays the Amalgamate button', async () => { businessStore.setLegalType(CorpTypeCd.BC_COMPANY) + businessStore.$state.businessInfo.state = EntityState.ACTIVE const wrapper = mount(EntityMenu, { vuetify, @@ -312,6 +313,7 @@ describe('Entity Menu - Amagamate button tests', () => { it('amalgamate button is disabled if not allowed', async () => { businessStore.setLegalType(CorpTypeCd.BC_COMPANY) + businessStore.$state.businessInfo.state = EntityState.ACTIVE const wrapper = mount(EntityMenu, { vuetify,