Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import {Bucket, File, HmacKey, Notification, Storage} from '../src/';
import * as crypto from 'crypto';
import * as assert from 'assert';
import {DecorateRequestOptions} from '../src/nodejs-common';
import fetch from 'node-fetch';

interface RetryCase {
instructions: String[];
Expand Down
8 changes: 2 additions & 6 deletions handwritten/storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"storage"
],
"scripts": {
"all-test": "npm test && npm run system-test && npm run samples-test",
"all-test": "npm test && npm run system-test",
Comment thread
thiyaguk09 marked this conversation as resolved.
"benchwrapper": "node bin/benchwrapper.js",
"check": "gts check",
"clean": "rm -rf build/",
Expand All @@ -68,7 +68,6 @@
"presystem-test:esm": "npm run compile:esm",
"presystem-test": "npm run compile -- --sourceMap",
"pretest": "npm run compile -- --sourceMap",
"samples-test": "npm link && cd samples/ && npm link ../ && npm test && cd ../",
"system-test:esm": "mkdir -p $HOME/.config && mocha build/esm/system-test --timeout 600000 --exit",
"system-test": "mkdir -p $HOME/.config && mocha build/cjs/system-test --timeout 600000 --exit",
"test": "cross-env NODE_OPTIONS=\"--require ./scripts/preload-yargs.cjs --no-deprecation\" c8 mocha build/cjs/test"
Expand Down Expand Up @@ -101,14 +100,12 @@
"@types/mocha": "^9.1.1",
"@types/mockery": "^1.4.29",
"@types/node": "^24.0.0",
"@types/node-fetch": "^2.1.3",
"@types/proxyquire": "^1.3.28",
"@types/request": "^2.48.4",
"@types/request": "^2.48.12",
"@types/sinon": "^17.0.0",
"@types/tmp": "0.2.6",
"@types/yargs": "^17.0.35",
"c8": "^9.0.0",
"form-data": "^4.0.4",
"gapic-tools": "^2.0.1",
"gts": "^5.0.0",
"jsdoc": "^4.0.4",
Expand All @@ -117,7 +114,6 @@
"mocha": "^9.2.2",
"mockery": "^2.1.0",
"nock": "~13.5.0",
"node-fetch": "^2.6.7",
"pack-n-play": "^5.0.1",
"proxyquire": "^2.1.3",
"sinon": "^18.0.0",
Expand Down
2 changes: 0 additions & 2 deletions handwritten/storage/system-test/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ import assert from 'assert';
import {after, afterEach, before, beforeEach, describe, it} from 'mocha';
import * as crypto from 'crypto';
import * as fs from 'fs';
import fetch from 'node-fetch';
import FormData from 'form-data';
import pLimit from 'p-limit';
import {promisify} from 'util';
import * as path from 'path';
Expand Down
Loading