@@ -70,7 +70,7 @@ test.describe('Room messages', () => {
70
70
await assertMessages ( page , [ { from : 'user1' , message : 'Message 1' } ] ) ;
71
71
} ) ;
72
72
73
- test . skip ( `it can load all events back to beginning of timeline for timelines that truncated` , async ( {
73
+ test ( `it can load all events back to beginning of timeline for timelines that truncated` , async ( {
74
74
page,
75
75
} ) => {
76
76
// generally the matrix server paginates after 10 messages
@@ -92,7 +92,7 @@ test.describe('Room messages', () => {
92
92
) ;
93
93
} ) ;
94
94
95
- test . skip ( `it can send a markdown message` , async ( { page } ) => {
95
+ test ( `it can send a markdown message` , async ( { page } ) => {
96
96
await login ( page , 'user1' , 'pass' ) ;
97
97
let room1 = await getRoomId ( page ) ;
98
98
await sendMessage ( page , room1 , 'message with _style_' ) ;
@@ -107,9 +107,7 @@ test.describe('Room messages', () => {
107
107
) . toContainText ( 'style' ) ;
108
108
} ) ;
109
109
110
- test . skip ( `it can create a room specific pending message` , async ( {
111
- page,
112
- } ) => {
110
+ test ( `it can create a room specific pending message` , async ( { page } ) => {
113
111
await login ( page , 'user1' , 'pass' ) ;
114
112
let room1 = await getRoomId ( page ) ;
115
113
await sendMessage ( page , room1 , 'Hello' ) ;
@@ -143,7 +141,7 @@ test.describe('Room messages', () => {
143
141
) . toHaveValue ( 'room 2 message' ) ;
144
142
} ) ;
145
143
146
- test . skip ( 'can add a card to a markdown message' , async ( { page } ) => {
144
+ test ( 'can add a card to a markdown message' , async ( { page } ) => {
147
145
const testCard = `${ testHost } /hassan` ;
148
146
await login ( page , 'user1' , 'pass' ) ;
149
147
await page . locator ( `[data-test-room-settled]` ) . waitFor ( ) ;
@@ -176,7 +174,7 @@ test.describe('Room messages', () => {
176
174
) . toContainText ( 'my' ) ;
177
175
} ) ;
178
176
179
- test . skip ( 'can add a card that is over 65K to a message (i.e. split card into multiple matrix events)' , async ( {
177
+ test ( 'can add a card that is over 65K to a message (i.e. split card into multiple matrix events)' , async ( {
180
178
page,
181
179
} ) => {
182
180
const testCard = `${ testHost } /big-card` ; // this is a 153KB card
@@ -219,7 +217,7 @@ test.describe('Room messages', () => {
219
217
] ) ;
220
218
} ) ;
221
219
222
- test . skip ( 'it can strip out base64 image fields from cards sent in messages' , async ( {
220
+ test ( 'it can strip out base64 image fields from cards sent in messages' , async ( {
223
221
page,
224
222
} ) => {
225
223
const testCard = `${ testHost } /mango-puppy` ; // this is a 153KB card
@@ -253,7 +251,7 @@ test.describe('Room messages', () => {
253
251
expect ( serializeCard . data . attributes . picture ) . toBeUndefined ( ) ;
254
252
} ) ;
255
253
256
- test . skip ( `it does include patch function in message event when top-most card is writable and context is shared` , async ( {
254
+ test ( `it does include patch function in message event when top-most card is writable and context is shared` , async ( {
257
255
page,
258
256
} ) => {
259
257
await login ( page , 'user1' , 'pass' ) ;
@@ -312,7 +310,7 @@ test.describe('Room messages', () => {
312
310
] ) ;
313
311
} ) ;
314
312
315
- test . skip ( `it does not include patch function in message event for an open card that is not attached` , async ( {
313
+ test ( `it does not include patch function in message event for an open card that is not attached` , async ( {
316
314
page,
317
315
} ) => {
318
316
await login ( page , 'user1' , 'pass' ) ;
@@ -337,7 +335,7 @@ test.describe('Room messages', () => {
337
335
expect ( boxelMessageData . context . functions ) . toMatchObject ( [ ] ) ;
338
336
} ) ;
339
337
340
- test . skip ( `it does not include patch function in message event when top-most card is read-only` , async ( {
338
+ test ( `it does not include patch function in message event when top-most card is read-only` , async ( {
341
339
page,
342
340
} ) => {
343
341
// the base realm is a read-only realm
@@ -360,7 +358,7 @@ test.describe('Room messages', () => {
360
358
expect ( boxelMessageData . context . functions ) . toMatchObject ( [ ] ) ;
361
359
} ) ;
362
360
363
- test . skip ( 'can send only a card as a message' , async ( { page } ) => {
361
+ test ( 'can send only a card as a message' , async ( { page } ) => {
364
362
const testCard = `${ testHost } /hassan` ;
365
363
await login ( page , 'user1' , 'pass' ) ;
366
364
let room1 = await getRoomId ( page ) ;
@@ -373,9 +371,7 @@ test.describe('Room messages', () => {
373
371
] ) ;
374
372
} ) ;
375
373
376
- test . skip ( 'can send cards with types unsupported by matrix' , async ( {
377
- page,
378
- } ) => {
374
+ test ( 'can send cards with types unsupported by matrix' , async ( { page } ) => {
379
375
const testCard = `${ testHost } /type-examples` ;
380
376
await login ( page , 'user1' , 'pass' ) ;
381
377
let room1 = await getRoomId ( page ) ;
@@ -390,7 +386,7 @@ test.describe('Room messages', () => {
390
386
] ) ;
391
387
} ) ;
392
388
393
- test . skip ( 'can remove a card from a pending message' , async ( { page } ) => {
389
+ test ( 'can remove a card from a pending message' , async ( { page } ) => {
394
390
const testCard = `${ testHost } /hassan` ;
395
391
const testCard2 = `${ testHost } /mango` ;
396
392
await login ( page , 'user1' , 'pass' ) ;
@@ -446,7 +442,7 @@ test.describe('Room messages', () => {
446
442
] ) ;
447
443
} ) ;
448
444
449
- test . skip ( 'can render multiple cards in a room' , async ( { page } ) => {
445
+ test ( 'can render multiple cards in a room' , async ( { page } ) => {
450
446
// the loader deadlocking issue would otherwise prevent this
451
447
452
448
const testCard1 = `${ testHost } /hassan` ;
@@ -481,7 +477,7 @@ test.describe('Room messages', () => {
481
477
await assertMessages ( page , [ message1 , message2 ] ) ;
482
478
} ) ;
483
479
484
- test . skip ( 'can send multiple cards in a message' , async ( { page } ) => {
480
+ test ( 'can send multiple cards in a message' , async ( { page } ) => {
485
481
const testCard1 = `${ testHost } /hassan` ;
486
482
const testCard2 = `${ testHost } /mango` ;
487
483
const message = {
@@ -511,7 +507,7 @@ test.describe('Room messages', () => {
511
507
await assertMessages ( page , [ message ] ) ;
512
508
} ) ;
513
509
514
- test . skip ( 'attached cards are not duplicated' , async ( { page } ) => {
510
+ test ( 'attached cards are not duplicated' , async ( { page } ) => {
515
511
const testCard1 = `${ testHost } /hassan` ;
516
512
const testCard2 = `${ testHost } /mango` ;
517
513
const testCard3 = `${ testHost } /type-examples` ;
@@ -538,7 +534,7 @@ test.describe('Room messages', () => {
538
534
] ) ;
539
535
} ) ;
540
536
541
- test . skip ( 'displays view all pill if attached card more than 4' , async ( {
537
+ test ( 'displays view all pill if attached card more than 4' , async ( {
542
538
page,
543
539
} ) => {
544
540
const testCard1 = `${ testHost } /hassan` ;
@@ -568,7 +564,7 @@ test.describe('Room messages', () => {
568
564
await expect ( page . locator ( `[data-test-attached-card]` ) ) . toHaveCount ( 5 ) ;
569
565
} ) ;
570
566
571
- test . skip ( 'displays auto-attached card' , async ( { page } ) => {
567
+ test ( 'displays auto-attached card' , async ( { page } ) => {
572
568
const testCard1 = `${ testHost } /hassan` ;
573
569
const testCard2 = `${ testHost } /mango` ;
574
570
@@ -624,7 +620,7 @@ test.describe('Room messages', () => {
624
620
] ) ;
625
621
} ) ;
626
622
627
- test . skip ( 'does not auto attach index card' , async ( { page } ) => {
623
+ test ( 'does not auto attach index card' , async ( { page } ) => {
628
624
const testCard1 = `${ testHost } /hassan` ;
629
625
630
626
await login ( page , 'user1' , 'pass' ) ;
@@ -670,7 +666,7 @@ test.describe('Room messages', () => {
670
666
] ) ;
671
667
} ) ;
672
668
673
- test . skip ( 'can remove auto-attached card' , async ( { page } ) => {
669
+ test ( 'can remove auto-attached card' , async ( { page } ) => {
674
670
const testCard1 = `${ testHost } /hassan` ;
675
671
const testCard2 = `${ testHost } /mango` ;
676
672
const testCard3 = `${ testHost } /type-examples` ;
@@ -734,7 +730,7 @@ test.describe('Room messages', () => {
734
730
] ) ;
735
731
} ) ;
736
732
737
- test . skip ( 'it can send the prompts on new-session room as chat message on click' , async ( {
733
+ test ( 'it can send the prompts on new-session room as chat message on click' , async ( {
738
734
page,
739
735
} ) => {
740
736
const prompt = {
@@ -752,9 +748,7 @@ test.describe('Room messages', () => {
752
748
await assertMessages ( page , [ prompt ] ) ;
753
749
} ) ;
754
750
755
- test . skip ( 'sends message when no card open in the stack' , async ( {
756
- page,
757
- } ) => {
751
+ test ( 'sends message when no card open in the stack' , async ( { page } ) => {
758
752
await login ( page , 'user1' , 'pass' ) ;
759
753
await page
760
754
. locator ( '[data-test-stack-card] [data-test-close-button]' )
@@ -773,9 +767,7 @@ test.describe('Room messages', () => {
773
767
] ) ;
774
768
} ) ;
775
769
776
- test . skip ( 'attaches a card in a coversation multiple times' , async ( {
777
- page,
778
- } ) => {
770
+ test ( 'attaches a card in a coversation multiple times' , async ( { page } ) => {
779
771
const testCard = `${ testHost } /hassan` ;
780
772
781
773
await login ( page , 'user1' , 'pass' ) ;
0 commit comments