File tree 2 files changed +12
-4
lines changed
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -896,7 +896,7 @@ describe( 'useMultiRootEditor', () => {
896
896
897
897
describe ( 'semaphores' , ( ) => {
898
898
const testSemaphoreForWatchdog = enableWatchdog => {
899
- it ( 'should assign properly `data` property to editor even if it is still mounting' , async ( ) => {
899
+ it ( 'should assign `data` property to the editor even if it is still mounting' , { retry : 3 } , async ( ) => {
900
900
const deferInitialization = createDefer ( ) ;
901
901
902
902
class SlowEditor extends TestMultiRootEditor {
@@ -931,16 +931,20 @@ describe( 'useMultiRootEditor', () => {
931
931
editor : SlowEditor
932
932
} ) ) ;
933
933
934
- await timeout ( 100 ) ;
934
+ await timeout ( 500 ) ;
935
935
936
+ // Depending on the execution order on the event loop, this `setData` might be delayed by the React engine.
937
+ // It happens only if the event loop is busy and React has to wait for the next tick a little bit longer than usual.
938
+ // It does not play well with the `waitFor` below, so we added a few retries to make it more stable.
939
+ // It should not be a problem in real life, as it is a rare case and might be solved in future React versions.
936
940
result . current . setData ( {
937
941
intro : 'Hello World!' ,
938
942
content : ''
939
943
} ) ;
940
944
941
- await timeout ( 200 ) ;
945
+ await timeout ( 500 ) ;
942
946
943
- deferInitialization . resolve ( ) ;
947
+ await deferInitialization . resolve ( ) ;
944
948
945
949
await waitFor ( ( ) => {
946
950
expect ( result . current . editor ) . to . be . instanceof ( SlowEditor ) ;
Original file line number Diff line number Diff line change @@ -54,6 +54,9 @@ export default defineConfig( {
54
54
include : [
55
55
'tests/**/*.test.[j|t]sx'
56
56
] ,
57
+ sequence : {
58
+ shuffle : true
59
+ } ,
57
60
coverage : {
58
61
provider : 'istanbul' ,
59
62
include : [ 'src/*' ] ,
@@ -63,6 +66,7 @@ export default defineConfig( {
63
66
} ,
64
67
reporter : [
65
68
'text-summary' ,
69
+ 'text' ,
66
70
'html' ,
67
71
'lcovonly' ,
68
72
'json'
You can’t perform that action at this time.
0 commit comments