Skip to content

Commit

Permalink
chore(deps-dev): bump eslint-plugin-mocha from 10.2.0 to 10.3.0 (#573)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump eslint-plugin-mocha from 10.2.0 to 10.3.0

Bumps [eslint-plugin-mocha](https://github.com/lo1tuma/eslint-plugin-mocha) from 10.2.0 to 10.3.0.
- [Release notes](https://github.com/lo1tuma/eslint-plugin-mocha/releases)
- [Changelog](https://github.com/lo1tuma/eslint-plugin-mocha/blob/main/CHANGELOG.md)
- [Commits](lo1tuma/eslint-plugin-mocha@10.2.0...10.3.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-mocha
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Julian Grinblat <julian@dotcore.co.il>
  • Loading branch information
dependabot[bot] and perrin4869 committed Mar 1, 2024
1 parent c3b9926 commit 8e7ee50
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
14 changes: 7 additions & 7 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
Expand Up @@ -59,7 +59,7 @@
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-mocha": "^10.3.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^51.0.1",
Expand Down
7 changes: 7 additions & 0 deletions test/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -375,12 +375,19 @@ describe('react-stay-scrolled', () => {
};

it('should animate scrolling with react-spring', () => testAnimation(springRunScroll, SpringTestComponent));

it('should report isScrolled correctly when using react-spring', () => testAnimationOnScrolled(springRunScroll, SpringTestComponent));

it('should animate scrolling with dynamics.js', () => testAnimation(dynamicsRunScroll));

it('should report isScrolled correctly when using dynamics.js', () => testAnimationOnScrolled(dynamicsRunScroll));

it('should animate scrolling with velocity', () => testAnimation(velocityRunScroll));

it('should report isScrolled correctly when using velocity', () => testAnimationOnScrolled(velocityRunScroll));

it('should animate scrolling with jquery', () => testAnimation(jqueryRunScroll));

it('should report isScrolled correctly when using jquery', () => testAnimationOnScrolled(jqueryRunScroll));
});
});

0 comments on commit 8e7ee50

Please sign in to comment.