Skip to content
This repository was archived by the owner on Apr 3, 2024. It is now read-only.

Commit 5f45dbf

Browse files
authoredMay 16, 2017
Avoid retries in e2e tests (#260)
The new retry-request behavior was causing timeouts on the e2e tests. We avoid this by using request instead. PR-URL: #260
1 parent 8a119de commit 5f45dbf

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎test/fixtures/fib.js

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ function fib(n) {
2121
* limitations under the License.
2222
*/
2323

24+
var proxyquire = require('proxyquire');
25+
proxyquire('gcp-metadata', {
26+
'retry-request': require('request')
27+
});
28+
2429
var debuglet = require('../..').start({
2530
debug: {
2631
logLevel: 2,

0 commit comments

Comments
 (0)
This repository has been archived.