diff --git a/pubspec.lock b/pubspec.lock index 9fa8f37..9fa97c9 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -189,10 +189,11 @@ packages: fetch_client: dependency: "direct dev" description: - name: fetch_client - sha256: "83c07b07a63526a43630572c72715707ca113a8aa3459efbc7b2d366b79402af" - url: "https://pub.dev" - source: hosted + path: "." + ref: iterator-error + resolved-ref: "3df832140f13ac5351875031a693f48d4d538ee1" + url: "https://github.com/xvrh/fetch_client.git" + source: git version: "1.0.2" file: dependency: transitive diff --git a/pubspec.yaml b/pubspec.yaml index 7f4da65..c17d7c2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -16,6 +16,9 @@ dev_dependencies: collection: dart_style: fetch_client: + git: + url: https://github.com/xvrh/fetch_client.git + ref: 'iterator-error' http: json_annotation: json_serializable: diff --git a/test/apis/devtools_panels/manifest.json b/test/apis/devtools_panels/manifest.json index 11a9ecf..e5f4f70 100644 --- a/test/apis/devtools_panels/manifest.json +++ b/test/apis/devtools_panels/manifest.json @@ -1,5 +1,3 @@ { - "permissions": [ - ], "devtools_page": "devtools.html" } diff --git a/test/runner/runner_client.dart b/test/runner/runner_client.dart index 39c1223..1c9bb04 100644 --- a/test/runner/runner_client.dart +++ b/test/runner/runner_client.dart @@ -27,8 +27,8 @@ Future setup(void Function(TestContext) callback) async { } } })); - } catch (e) { - print("Global error $e"); + } catch (e, s) { + print("Global error $e\n$s"); } }