Skip to content

Commit

Permalink
fix: missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipoliko committed Sep 6, 2024
1 parent a345c2e commit a17b9be
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion packages/testing-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,19 @@
"default": "./dist/cjs/jestSetupFileAfterEnv.js"
}
},
"dependencies": {
"@messageformat/core": "^3.0.1",
"globby": "^11.1.0"
},
"peerDependencies": {
"@ima/cli": ">=19.0.0",
"@ima/core": ">=19.0.0",
"@ima/server": ">=19.0.0",
"@ima/react-page-renderer": ">=19.0.0",
"@testing-library/dom": ">=10.0.0",
"@testing-library/jest-dom": ">=6.0.0",
"@testing-library/react": ">=12.0.0"
"@testing-library/react": ">=12.0.0",
"express": ">=4.0.0"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion packages/testing-library/src/rtl.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { PageContext } from '@ima/react-page-renderer';
import { render } from '@testing-library/react';
import type { RenderOptions } from '@testing-library/react';
import { ReactElement } from 'react';
import type { ReactElement } from 'react';

// import of app/main is resolved by the jest moduleNameMapper
import { ima, getInitialAppConfigFunctions } from 'app/main';
Expand Down

0 comments on commit a17b9be

Please sign in to comment.