From 05f676468c3938b75b4808cbb7ad8df6a07f27f9 Mon Sep 17 00:00:00 2001 From: Rexios Date: Fri, 11 Oct 2024 15:43:08 -0400 Subject: [PATCH] Debug tests --- test/gen_test.dart | 2 +- test/link_test.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/gen_test.dart b/test/gen_test.dart index 3a70654..fbcd26f 100644 --- a/test/gen_test.dart +++ b/test/gen_test.dart @@ -7,7 +7,7 @@ const argString = 'pub run build_runner build --delete-conflicting-outputs'; void main() { test('[engine] gen', () async { - final result = await testCommand(['gen']); + final result = await testCommand(['gen'], debug: true); final stdout = result.stdout; expect(result.exitCode, isNot(ExitCode.success.code)); diff --git a/test/link_test.dart b/test/link_test.dart index 3d1d9da..76984f4 100644 --- a/test/link_test.dart +++ b/test/link_test.dart @@ -8,7 +8,7 @@ import 'test_utils.dart'; void main() { test('puby link', () async { - final result = await testCommand(['link']); + final result = await testCommand(['link'], debug: true); final stdout = result.stdout; expect(result.exitCode, ExitCode.success.code);