From 4d778326c600d09aa041ea946923882bb7dce44f Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Fri, 25 Oct 2024 14:17:14 +0800 Subject: [PATCH] chore: dummy test for GitHub actions --- .github/workflows/dart.yml | 2 +- thermion_dart/test/dummy_tests.dart | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 thermion_dart/test/dummy_tests.dart diff --git a/.github/workflows/dart.yml b/.github/workflows/dart.yml index 0aa27c76..c3ddc06d 100644 --- a/.github/workflows/dart.yml +++ b/.github/workflows/dart.yml @@ -36,7 +36,7 @@ jobs: # run: dart analyze - name: Run tests - run: dart --enable-experiment=native-assets test test/gltf_tests.dart + run: dart --enable-experiment=native-assets test test/dummy_tests.dart # Upload logs on failure - name: Upload logs diff --git a/thermion_dart/test/dummy_tests.dart b/thermion_dart/test/dummy_tests.dart new file mode 100644 index 00000000..eb63ea19 --- /dev/null +++ b/thermion_dart/test/dummy_tests.dart @@ -0,0 +1,10 @@ +// just for investigating crashes on GitHub actions +import 'package:test/test.dart'; + +void main() async { + group("test", () { + test("test", () { + expect(1, 1); + }); + }); +}