From cad0d912dab3f194d1a279bf71cc96fbdc5602ec Mon Sep 17 00:00:00 2001 From: Matt Straathof Date: Fri, 15 Dec 2023 10:04:24 -0800 Subject: [PATCH] chore: add placeholder test so test command passes --- test/placeholder_test.dart | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/placeholder_test.dart diff --git a/test/placeholder_test.dart b/test/placeholder_test.dart new file mode 100644 index 0000000..b57700f --- /dev/null +++ b/test/placeholder_test.dart @@ -0,0 +1,12 @@ +import 'package:test/test.dart'; +void main() { + group('A group of tests', () { + setUp(() { + // Additional setup goes here. + }); + + test('First Test', () { + expect(true, isTrue); + }); + }); +} \ No newline at end of file