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); }); });