Skip to content

Commit

Permalink
test: more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyhw committed Feb 6, 2024
1 parent fef48a0 commit b586672
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion examples/expo-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"check": "tsc --noEmit",
"test": "jest"
"test": "jest",
"test:ci": "jest --runInBand"
},
"dependencies": {
"@expo/metro-runtime": "^3.1.1",
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"publish:alpha": "yarn lerna publish from-git --dist-tag alpha",
"publish:latest": "yarn lerna publish from-git --dist-tag latest",
"publish:next": "yarn lerna publish from-git --dist-tag next",
"test:ci": "lerna run test:ci",
"test": "lerna run test",
"check-mismatched-deps": "ts-node ./check-matching-deps.ts"
},
Expand Down
3 changes: 2 additions & 1 deletion packages/react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
"scripts": {
"dev": "ts-node ./buildscripts/gentsdev.ts && tsup --watch",
"prepare": "rm -rf dist/ && tsup",
"test": "jest"
"test": "jest",
"test:ci": "jest"
},
"jest": {
"modulePathIgnorePatterns": [
Expand Down

0 comments on commit b586672

Please sign in to comment.