Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade repo-tools to fix some failing system tests. #657

Merged
merged 6 commits into from
Jun 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appengine/metadata/flexible/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"got": "8.2.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "2.2.1"
"@google-cloud/nodejs-repo-tools": "^2.3.0"
},
"cloud-repo-tools": {
"test": {
Expand Down
6 changes: 3 additions & 3 deletions appengine/metadata/standard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
"node": "8.x.x"
},
"scripts": {
"lint": "samples lint",
"lint": "repo-tools lint",
"pretest": "npm run lint",
"system-test": "samples test app -- ./server.js",
"system-test": "repo-tools test app -- ./server.js",
"test": "npm run system-test"
},
"dependencies": {
"express": "4.16.2",
"got": "8.2.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "2.2.1"
"@google-cloud/nodejs-repo-tools": "^2.3.0"
},
"cloud-repo-tools": {
"test": {
Expand Down
2 changes: 1 addition & 1 deletion endpoints/getting-started-grpc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"yargs": "11.0.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.2.1",
"@google-cloud/nodejs-repo-tools": "^2.3.0",
"ava": "0.25.0"
},
"cloud-repo-tools": {
Expand Down
6 changes: 3 additions & 3 deletions endpoints/getting-started/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
},
"scripts": {
"start": "node app.js",
"lint": "samples lint",
"lint": "repo-tools lint",
"pretest": "npm run lint",
"test": "samples test run --cmd ava -- -T 20s --verbose test/*.test.js"
"test": "repo-tools test run --cmd ava -- -T 20s --verbose test/*.test.js"
},
"dependencies": {
"body-parser": "1.18.2",
"express": "4.16.2",
"safe-buffer": "5.1.1"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "2.2.1",
"@google-cloud/nodejs-repo-tools": "^2.3.0",
"ava": "0.25.0",
"proxyquire": "2.0.0",
"sinon": "4.4.2",
Expand Down