Skip to content

Commit

Permalink
New version 4.0.0-beta.105 Read more https://github.com/xdan/jodit/bl…
Browse files Browse the repository at this point in the history
  • Loading branch information
xdan committed Nov 5, 2023
1 parent 6b8caeb commit 799bae0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jodit",
"version": "4.0.0-beta.104",
"version": "4.0.0-beta.105",
"description": "Jodit is awesome and usefully wysiwyg editor with filebrowser",
"main": "build/jodit.min.js",
"types": "./types/index.d.ts",
Expand Down
3 changes: 2 additions & 1 deletion src/plugins/enter/enter.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1062,8 +1062,9 @@ describe('Enter behavior Tests', function () {
]
].forEach(([source, result, options, mod]) => {
describe('For source: ' + source, () => {
it('Should be result: ' + result, () => {
it('Should be result: ' + result, async () => {
const editor = getJodit(options);
await editor.waitForReady();
editor.focus();
editor.value = source;
setCursorToChar(editor);
Expand Down

0 comments on commit 799bae0

Please sign in to comment.