Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
xdan committed Feb 16, 2025
1 parent f6012c9 commit c56718b
Show file tree
Hide file tree
Showing 3 changed files with 4 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.5.14",
"version": "4.5.15",
"description": "Jodit is an awesome and useful wysiwyg editor with filebrowser",
"main": "build/jodit.min.js",
"types": "./types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/core/async/async.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ describe('Test Async module', () => {
{ delay: 100 }
);
const end = Date.now();
expect(end - start).to.be.at.least(100);
expect(100 - (end - start)).to.be.lessThan(5);
});

it('should abort the task if signal is aborted', async function () {
Expand Down

0 comments on commit c56718b

Please sign in to comment.