Skip to content

Commit 6660f98

Browse files
committed
Addressed comments
1 parent fb42200 commit 6660f98

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.vscode/settings.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@
1111
},
1212
"typescript.tsdk": "node_modules/typescript/lib",
1313
"files.associations": { "*.json": "jsonc" },
14-
"eslint.workingDirectories": [{ "mode": "auto" }],
15-
"editor.wordWrap": "off",
14+
"eslint.workingDirectories": [{ "mode": "auto" }]
1615
}

config/karma.saucelabs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ module.exports = function (config) {
210210

211211
port: 9876,
212212

213-
retryLimit: 0,
213+
retryLimit: 3,
214214

215215
// concurrency: 10,
216216

config/mocharc.node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
const config = {
2626
require: 'ts-node/register',
2727
timeout: 5000,
28-
// retries: 5,
28+
retries: 5,
2929
exit: true
3030
};
3131

packages/util/src/fetch_provider.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18+
// @internal
1819
export class FetchProvider {
1920
private static fetchImpl: typeof fetch | null;
2021
private static headersImpl: typeof Headers | null;

0 commit comments

Comments
 (0)