Skip StudioReportLuauAny flag in tests

This commit is contained in:
Junseo Yoo 2024-07-26 10:46:07 -07:00
parent bb7d5cf6c8
commit 28c48cf460

View file

@ -51,6 +51,9 @@ static bool skipFastFlag(const char* flagName)
if (strncmp(flagName, "Debug", 5) == 0)
return true;
if (strcmp(flagName, "StudioReportLuauAny") == 0)
return true;
return false;
}