Skip to content
Open
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
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
11 changes: 3 additions & 8 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 All @@ -86,8 +85,8 @@
"html-entities": "^2.5.2",
"mime": "^3.0.0",
"p-limit": "^3.0.1",
"retry-request": "^7.0.0",
"teeny-request": "^9.0.0"
"retry-request": "^8.0.0",
"teeny-request": "^10.0.0"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
Expand All @@ -101,14 +100,11 @@
"@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/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": "^0.4.0",
"gts": "^5.0.0",
"jsdoc": "^4.0.4",
Expand All @@ -117,7 +113,6 @@
"mocha": "^9.2.2",
"mockery": "^2.1.0",
"nock": "~13.5.0",
"node-fetch": "^2.6.7",
"pack-n-play": "^2.0.0",
"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