From f4e2a4bdc63b1023be65dd2b7e43e4d04766fb96 Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Fri, 25 Oct 2024 14:49:11 +0800 Subject: [PATCH] chore: dummy tests --- thermion_dart/test/dummy_tests.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/thermion_dart/test/dummy_tests.dart b/thermion_dart/test/dummy_tests.dart index 42300356..4fb62142 100644 --- a/thermion_dart/test/dummy_tests.dart +++ b/thermion_dart/test/dummy_tests.dart @@ -5,9 +5,11 @@ import 'helpers.dart'; void main() async { group("test", () { - test("test", () { + test("test", () async { print("Creating test helper"); final testHelper = TestHelper("dummy"); + var viewer = await testHelper.createViewer(); + expect(1, 1); }); });