Remove test editor integration from Controller and update integration test logic

This commit is contained in:
scawful
2025-03-11 20:11:47 -04:00
parent 986084f3cd
commit 358520fcae
4 changed files with 7 additions and 17 deletions

View File

@@ -13,11 +13,11 @@ int main(int argc, char* argv[]) {
absl::InstallFailureSignalHandler(options);
if (argc > 1 && std::string(argv[1]) == "integration") {
return yaze::test::integration::RunIntegrationTest();
return yaze::test::RunIntegrationTest();
} else if (argc > 1 && std::string(argv[1]) == "room_object") {
::testing::InitGoogleTest(&argc, argv);
if (!RUN_ALL_TESTS()) {
return yaze::test::integration::RunIntegrationTest();
return yaze::test::RunIntegrationTest();
}
}