File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 4646
4747 - name : Build
4848 run : pnpm build
49- https://github.com/jscottsmith/react-scroll-parallax/actions/runs/18050399519/job/51371003107?pr=279#step:9:1
Original file line number Diff line number Diff line change 1- export { EasingPreset , EffectNumber , EffectString } from 'parallax-controller' ;
1+ export { EasingPreset } from 'parallax-controller' ;
22
33export * from './components/Parallax' ;
44export * from './components/ParallaxBanner' ;
Original file line number Diff line number Diff line change 22declare global {
33 const global : any ;
44}
5+
6+ // Import jest-dom types
7+ import '@testing-library/jest-dom' ;
8+
9+ // Extend Jest matchers
10+ declare module '@jest/expect' {
11+ interface Matchers < R > {
12+ toBeInTheDocument ( ) : R ;
13+ toHaveAttribute ( attr : string , value ?: string ) : R ;
14+ toHaveClass ( className : string ) : R ;
15+ toHaveStyle ( css : string | Record < string , any > ) : R ;
16+ }
17+ }
You can’t perform that action at this time.
0 commit comments