diff --git a/src/common-components/textbox-question/textbox-question.spec.js b/src/common-components/textbox-question/textbox-question.spec.js index adffdbf1c..1f15246f7 100644 --- a/src/common-components/textbox-question/textbox-question.spec.js +++ b/src/common-components/textbox-question/textbox-question.spec.js @@ -334,7 +334,7 @@ describe("textboxQuestion.vue", () => { it("Should not display camera or spinner icon when disabled", () => { // Arrange const inputId = "test"; - + const wrapper = shallowMount(textboxQuestion, { global: { directives: { @@ -353,7 +353,7 @@ describe("textboxQuestion.vue", () => { // Act const cameraIcon = wrapper.find('[data-test="image-upload"]'); - const loadingIcon = wrapper.findComponent('loader'); + const loadingIcon = wrapper.findComponent("loader"); // Assert expect(cameraIcon.exists()).toBe(false);