We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e26f92c commit 18fe5c6Copy full SHA for 18fe5c6
pkgs/native_assets_cli/test/example/native_add_library_test.dart
@@ -35,11 +35,17 @@ void main() async {
35
final testPackageUri = packageUri.resolve('example/$name/');
36
final dartUri = Uri.file(Platform.resolvedExecutable);
37
38
- await Process.run(
+ final pubGetResult = await Process.run(
39
dartUri.toFilePath(),
40
['pub', 'get'],
41
workingDirectory: testPackageUri.toFilePath(),
42
);
43
+ if (pubGetResult.exitCode != 0) {
44
+ print(pubGetResult.stdout);
45
+ print(pubGetResult.stderr);
46
+ }
47
+ expect(pubGetResult.exitCode, 0);
48
+ print('pub get done');
49
final processResult = await Process.run(
50
51
[
0 commit comments