Skip to content

Commit

Permalink
Maintenance: Stabilize editor actions spec.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvuckovic committed Feb 2, 2024
1 parent bdf097a commit 19c3043
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -30,7 +30,9 @@ const testAction = (
})
}

describe('testing actions', () => {
// Some test examples in this suite may be flaky due to asynchronous nature of the editor typing mechanism.
// Configure run mode to retry several times before giving up.
describe('testing actions', { retries: { runMode: 2 } }, () => {
testAction('Format as underlined', (text) => `<u>${text}</u>`)
testAction('Format as bold', (text) => `<strong>${text}</strong>`)
testAction('Format as italic', (text) => `<em>${text}</em>`)
Expand Down

0 comments on commit 19c3043

Please sign in to comment.