Skip to content

Commit

Permalink
test doc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus committed Sep 1, 2016
1 parent 362a0e3 commit 8c31399
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,14 @@
"docs": "node ./scripts/docs/packages.js",
"bundle": "node ./scripts/docs/bundle.js",
"lint": "jshint scripts/ packages/ system-test/ test/ && jscs packages/ system-test/ test/",
"test": "npm run docs && npm run bundle && mocha --timeout 5000 test/docs.js packages/*/test/*.js",
"test": "npm run docs && npm run bundle && mocha --timeout 5000 --bail test/docs.js packages/*/test/*.js",
"system-test": "mocha packages/*/system-test/*.js --no-timeouts --bail",
"cover": "istanbul cover _mocha --report lcovonly -x 'packages/*/src/v*/*.js' -- --no-timeouts --bail packages/*/test/*.js -R spec",
"coveralls": "npm run cover && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"license": "Apache-2.0",
"engines": {
"node": ">=0.12.0"
"node": ">=0.12.0",
"npm": ">3.0.0"
}
}
3 changes: 3 additions & 0 deletions packages/bigquery/src/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -726,6 +726,9 @@ Table.prototype.getRows = function(options, callback) {
* //-
* // Load data from a file in your Cloud Storage bucket.
* //-
* var gcs = require('@google-cloud/storage')({
* projectId: 'grape-spaceship-123'
* });
* var data = gcs.bucket('institutions').file('data.csv');
* table.import(data, function(err, job, apiResponse) {});
*
Expand Down

0 comments on commit 8c31399

Please sign in to comment.