Skip to content

Commit

Permalink
more robust tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jchavarri committed Sep 24, 2024
1 parent 69d1f0f commit 55ec57a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/run.t
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ When --dry-run is used, exit code is 0
> {
> "license": "MIT",
> "dependencies": {
> "react": "^18.2.0"
> "react": "18.2.0"
> }
> }
> EOF
Expand Down Expand Up @@ -137,8 +137,8 @@ Errors when version does not match
> {
> "license": "MIT",
> "dependencies": {
> "react": "^18.2.0",
> "react-dom": "^18.2.0"
> "react": "18.2.0",
> "react-dom": "18.2.0"
> }
> }
> EOF
Expand Down Expand Up @@ -182,8 +182,8 @@ Supports package with more than one depext
> {
> "license": "MIT",
> "dependencies": {
> "react": "^16.0.2",
> "react-dom": "^16.0.2"
> "react": "16.14.0",
> "react-dom": "16.14.0"
> }
> }
> EOF
Expand Down Expand Up @@ -225,8 +225,8 @@ Supports having more than one npm package in the syspkg list
> {
> "license": "MIT",
> "dependencies": {
> "react": "^16.0.2",
> "react-dom": "^16.0.2"
> "react": "16.14.0",
> "react-dom": "16.14.0"
> }
> }
> EOF
Expand Down Expand Up @@ -268,7 +268,7 @@ Supports || filters in the npm-version string
> {
> "license": "MIT",
> "dependencies": {
> "react": "^17.0.0"
> "react": "17.0.2"
> }
> }
> EOF
Expand Down

0 comments on commit 55ec57a

Please sign in to comment.