Skip to content

Commit c90694a

Browse files
authored
Merge pull request #559 from ckeditor/ck/add-retries-to-flaky-semaphore-tests
Tests: Add retry option to flaky multiroot test, extend delay between assertions. Tests: Randomize the order of the tests, to prevent incorrect dependencies across tests.
2 parents 94a9a43 + e057ade commit c90694a

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

tests/useMultiRootEditor.test.tsx

+8-4
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ describe( 'useMultiRootEditor', () => {
896896

897897
describe( 'semaphores', () => {
898898
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 () => {
900900
const deferInitialization = createDefer();
901901

902902
class SlowEditor extends TestMultiRootEditor {
@@ -931,16 +931,20 @@ describe( 'useMultiRootEditor', () => {
931931
editor: SlowEditor
932932
} ) );
933933

934-
await timeout( 100 );
934+
await timeout( 500 );
935935

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.
936940
result.current.setData( {
937941
intro: 'Hello World!',
938942
content: ''
939943
} );
940944

941-
await timeout( 200 );
945+
await timeout( 500 );
942946

943-
deferInitialization.resolve();
947+
await deferInitialization.resolve();
944948

945949
await waitFor( () => {
946950
expect( result.current.editor ).to.be.instanceof( SlowEditor );

vite.config.ts

+4
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ export default defineConfig( {
5454
include: [
5555
'tests/**/*.test.[j|t]sx'
5656
],
57+
sequence: {
58+
shuffle: true
59+
},
5760
coverage: {
5861
provider: 'istanbul',
5962
include: [ 'src/*' ],
@@ -63,6 +66,7 @@ export default defineConfig( {
6366
},
6467
reporter: [
6568
'text-summary',
69+
'text',
6670
'html',
6771
'lcovonly',
6872
'json'

0 commit comments

Comments
 (0)