Skip to content

Commit

Permalink
fix(surveys) Update rating question tests to use upperBoundLabel and …
Browse files Browse the repository at this point in the history
…lowerBoundLabel
  • Loading branch information
ssoonmi committed Nov 21, 2023
1 parent bde00d8 commit a04e6d5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/__tests__/extensions/surveys.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ describe('survey display logic', () => {
type: 'rating',
display: 'number',
scale: 10,
lower_bound_label: 'Not Satisfied',
upper_bound_label: 'Very Satisfied',
lowerBoundLabel: 'Not Satisfied',
upperBoundLabel: 'Very Satisfied',
},
],
},
Expand Down Expand Up @@ -133,8 +133,8 @@ describe('survey display logic', () => {
type: 'rating',
display: 'emoji',
scale: 5,
lower_bound_label: 'Not Good',
upper_bound_label: 'Very Good',
lowerBoundLabel: 'Not Good',
upperBoundLabel: 'Very Good',
},
],
},
Expand Down Expand Up @@ -249,8 +249,8 @@ describe('survey display logic', () => {
type: 'rating',
display: 'number',
scale: 10,
lower_bound_label: 'Not Satisfied',
upper_bound_label: 'Very Satisfied',
lowerBoundLabel: 'Not Satisfied',
upperBoundLabel: 'Very Satisfied',
},
],
},
Expand All @@ -265,8 +265,8 @@ describe('survey display logic', () => {
type: 'rating',
display: 'emoji',
scale: 3,
lower_bound_label: 'Not Satisfied',
upper_bound_label: 'Very Satisfied',
lowerBoundLabel: 'Not Satisfied',
upperBoundLabel: 'Very Satisfied',
},
],
},
Expand Down

0 comments on commit a04e6d5

Please sign in to comment.