Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
refactor: remove unused deps (#261)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored Nov 9, 2018
1 parent 8cf202c commit 1d42192
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 29 deletions.
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,11 @@
"google-gax": "^0.20.0",
"is": "^3.2.1",
"lodash.merge": "^4.6.1",
"protobufjs": "^6.8.6",
"yargs": "^12.0.0"
"protobufjs": "^6.8.6"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.3.0",
"@google-cloud/storage": "^2.0.0",
"async": "^2.6.1",
"codecov": "^3.0.2",
"eslint": "^5.0.1",
"eslint-config-prettier": "^3.0.0",
Expand Down
1 change: 0 additions & 1 deletion smoke-test/.eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
env:
mocha: true
rules:
node/no-unpublished-require: off
no-console: off
1 change: 1 addition & 0 deletions system-test/.eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ env:
mocha: true
rules:
no-console: off
node/no-unsupported-features/es-syntax: off
32 changes: 7 additions & 25 deletions system-test/vision.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
'use strict';

const assert = require('assert');
const async = require('async');
const fs = require('fs');
const path = require('path');
const {Storage} = require('@google-cloud/storage');
Expand Down Expand Up @@ -52,30 +51,13 @@ describe('Vision', function() {
});
});

after(function(done) {
storage.getBuckets(
{
prefix: TESTS_PREFIX,
},
function(err, buckets) {
if (err) {
done(err);
return;
}

function deleteBucket(bucket, callback) {
bucket.deleteFiles(function(err) {
if (err) {
callback(err);
return;
}

bucket.delete(callback);
});
}

async.each(buckets, deleteBucket, done);
}
after(async () => {
const [buckets] = await storage.getBuckets({prefix: TESTS_PREFIX});
await Promise.all(
buckets.map(async bucket => {
await bucket.deleteFiles();
await bucket.delete();
})
);
});

Expand Down

0 comments on commit 1d42192

Please sign in to comment.