diff --git a/.github/workflows/build-linux-gcc.yml b/.github/workflows/build-linux-gcc.yml index e3ccc3259..1cb2258be 100644 --- a/.github/workflows/build-linux-gcc.yml +++ b/.github/workflows/build-linux-gcc.yml @@ -91,5 +91,5 @@ jobs: if: success() || failure() # run this step even if previous step failed with: name: JEST Tests - path: test_detail.xml + path: ${{github.workspace}}/My Projects/Torque3D/game/test_detail.xml reporter: jest-junit \ No newline at end of file diff --git a/.github/workflows/build-macos-clang.yml b/.github/workflows/build-macos-clang.yml index 50e0f0d92..dc1e7eebb 100644 --- a/.github/workflows/build-macos-clang.yml +++ b/.github/workflows/build-macos-clang.yml @@ -35,7 +35,7 @@ jobs: run: | echo github.event.action: ${{ github.event.action }} echo github.event_name: ${{ github.event_name }} - + - name: Setup GCC problem matcher uses: ammaraskar/gcc-problem-matcher@master @@ -72,5 +72,5 @@ jobs: if: success() || failure() # run this step even if previous step failed with: name: JEST Tests - path: test_detail.xml + path: ${{github.workspace}}/My Projects/Torque3D/game/test_detail.xml reporter: jest-junit \ No newline at end of file diff --git a/.github/workflows/build-windows-msvc.yml b/.github/workflows/build-windows-msvc.yml index 7d7da1bae..701b80aa1 100644 --- a/.github/workflows/build-windows-msvc.yml +++ b/.github/workflows/build-windows-msvc.yml @@ -68,5 +68,5 @@ jobs: if: success() || failure() # run this step even if previous step failed with: name: JEST Tests - path: test_detail.xml + path: ${{github.workspace}}/My Projects/Torque3D/game/test_detail.xml reporter: jest-junit diff --git a/Engine/source/testing/windowManagerTest.cpp b/Engine/source/testing/windowManagerTest.cpp index aa0eb731d..6ee1a31be 100644 --- a/Engine/source/testing/windowManagerTest.cpp +++ b/Engine/source/testing/windowManagerTest.cpp @@ -28,6 +28,7 @@ #include "windowManager/sdl/sdlWindowMgr.h" #include "core/util/tVector.h" +#include using ::testing::Matcher; using ::testing::TypedEq;