Skip to content

Commit

Permalink
Fix tests in app
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeop committed Jul 23, 2020
1 parent 09992fa commit 6f402e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"start": "webpack-dev-server --inline --env.NODE_ENV=development",
"build": "webpack --colors --env.NODE_ENV=production",
"test": "mocha --require ts-node/register --require @babel/register --require ignore-styles --require regenerator-runtime --timeout 10000 --prof --recursive",
"test": "TS_NODE_FILES=true mocha --require ignore-styles --require ts-node/register --require @babel/register --require regenerator-runtime --timeout 10000 --prof --recursive",
"lint": "eslint app test --fix",
"i18n": "sync-i18n --files 'app/locales/*.json' --primary en --languages fr tl nl de dk es pl zh ru tr id sk ko zh_tw se --space 2"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/lib/components/Card/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type CardProps = {
header: string;
content: string;
image: string;
onClick: (event: React.MouseEvent) => void;
onClick: React.DOMAttributes<HTMLDivElement>['onClick'];
withMenu?: boolean;
animated?: boolean;
menuEntries?: CardMenuEntry[];
Expand Down

0 comments on commit 6f402e9

Please sign in to comment.