revert uncomment

This commit is contained in:
Vighnesh 2023-12-04 11:28:39 -08:00
parent 765ac75fe9
commit 7288e0aa63

View file

@ -74,6 +74,10 @@ public:
luauDirRel += "/..";
std::optional<std::string> parentPath = getParentPath(luauDirAbs);
if (parentPath)
{
printf("%s\n", (*parentPath).c_str());
}
REQUIRE_MESSAGE(parentPath, "Error getting Luau path");
luauDirAbs = *parentPath;
}
@ -209,7 +213,6 @@ TEST_CASE("PathNormalization")
}
}
#if 0
TEST_CASE_FIXTURE(ReplWithPathFixture, "RequireSimpleRelativePath")
{
@ -390,6 +393,4 @@ TEST_CASE_FIXTURE(ReplWithPathFixture, "RequirePathWithParentAlias")
assertOutputContainsAll({"true", "result from other_dependency"});
}
#endif
TEST_SUITE_END();