Merge pull request #125 from Safelite/feature/CSR-75_remove-classes
removing unneeded classes
This commit is contained in:
commit
b66ac00dd0
3 changed files with 3 additions and 4 deletions
|
|
@ -13,7 +13,7 @@ describe("buttonQuestion.vue", () => {
|
|||
wrapper.vm.chooseAnswer("2021");
|
||||
|
||||
// Assert
|
||||
expect(wrapper.find(".needed_car_info-text").text()).toEqual(
|
||||
expect(wrapper.find(".text-center").text()).toEqual(
|
||||
"Question Text"
|
||||
);
|
||||
const buttonButtons = wrapper.findAllComponents('[data-test="button"]');
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class="button_question">
|
||||
<div class="needed_car_info mt-6 mb-4 d-flex">
|
||||
<span class="text-center fs-6 fw-bold w-100 needed_car_info-text">{{
|
||||
<div class="mt-6 mb-4 d-flex">
|
||||
<span class="text-center fs-6 fw-bold w-100">{{
|
||||
questionText
|
||||
}}</span>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ import baseMixin from "@/mixins/base-mixin.js";
|
|||
|
||||
export default {
|
||||
name: "model-question",
|
||||
mixins: [baseMixin],
|
||||
data() {
|
||||
return {
|
||||
questionText: null,
|
||||
|
|
|
|||
Loading…
Reference in a new issue