@@ -97,10 +97,9 @@ describe("SlashCommand: uwc", () => {
9797 text : "Is this an Unwelcome Concept?" ,
9898 } ,
9999 answers : [
100- { text : "No, leave as is" } ,
101- { text : "No, but can be improved by change to achievement" } ,
102100 { text : "Yes, demote" } ,
103- { text : "Yes, but can be salvaged by change to achievement" } ,
101+ { text : "No, leave as is" } ,
102+ { text : "No, transfer" } ,
104103 { text : "Need further discussion" } ,
105104 ] ,
106105 allowMultiselect : false ,
@@ -188,10 +187,9 @@ describe("SlashCommand: uwc", () => {
188187 text : "Is this an Unwelcome Concept?" ,
189188 } ,
190189 answers : [
191- { text : "No, leave as is" } ,
192- { text : "No, but can be improved by change to achievement" } ,
193190 { text : "Yes, demote" } ,
194- { text : "Yes, but can be salvaged by change to achievement" } ,
191+ { text : "No, leave as is" } ,
192+ { text : "No, transfer" } ,
195193 { text : "Need further discussion" } ,
196194 ] ,
197195 allowMultiselect : false ,
@@ -230,10 +228,9 @@ describe("SlashCommand: uwc", () => {
230228 text : "Is this an Unwelcome Concept?" ,
231229 } ,
232230 answers : [
233- { text : "No, leave as is" } ,
234- { text : "No, but can be improved by change to achievement" } ,
235231 { text : "Yes, demote" } ,
236- { text : "Yes, but can be salvaged by change to achievement" } ,
232+ { text : "No, leave as is" } ,
233+ { text : "No, transfer" } ,
237234 { text : "Need further discussion" } ,
238235 ] ,
239236 allowMultiselect : false ,
@@ -296,10 +293,9 @@ describe("SlashCommand: uwc", () => {
296293 text : "Is this an Unwelcome Concept?" ,
297294 } ,
298295 answers : [
299- { text : "No, leave as is" } ,
300- { text : "No, but can be improved by change to achievement" } ,
301296 { text : "Yes, demote" } ,
302- { text : "Yes, but can be salvaged by change to achievement" } ,
297+ { text : "No, leave as is" } ,
298+ { text : "No, transfer" } ,
303299 { text : "Need further discussion" } ,
304300 ] ,
305301 allowMultiselect : false ,
@@ -333,7 +329,7 @@ describe("SlashCommand: uwc", () => {
333329 expect ( callArgs . poll . allowMultiselect ) . toBe ( false ) ;
334330 } ) ;
335331
336- it ( "creates a poll with exactly 5 answer options" , async ( ) => {
332+ it ( "creates a poll with exactly 4 answer options" , async ( ) => {
337333 // ARRANGE
338334 const member = createMockGuildMember ( {
339335 roles : {
@@ -354,7 +350,7 @@ describe("SlashCommand: uwc", () => {
354350
355351 // ASSERT
356352 const callArgs = ( interaction . reply as any ) . mock . calls [ 0 ] [ 0 ] ;
357- expect ( callArgs . poll . answers ) . toHaveLength ( 5 ) ;
353+ expect ( callArgs . poll . answers ) . toHaveLength ( 4 ) ;
358354 } ) ;
359355 } ) ;
360356
0 commit comments