[JS IR Tests] FIR invalidation tests re-generation

This commit is contained in:
Alexander Korepanov
2023-03-08 19:08:42 +01:00
parent f82d3e63a2
commit 9d352694af
2 changed files with 6 additions and 1 deletions
@@ -26,7 +26,7 @@ abstract class FirAbstractInvalidationTest(
targetBackend: TargetBackend,
workingDirPath: String
) : AbstractInvalidationTest(targetBackend, workingDirPath) {
private val mutedTests = setOf("constVals", "enum")
private val mutedTests = setOf("constVals", "enum", "jsCodeWithConstString")
override fun isIgnoredTest(projectInfo: ProjectInfo): Boolean {
return super.isIgnoredTest(projectInfo) || projectInfo.name in mutedTests
@@ -250,6 +250,11 @@ public class JsFirInvalidationTestGenerated extends AbstractJsFirInvalidationTes
runTest("js/js.translator/testData/incremental/invalidation/jsCode/");
}
@TestMetadata("jsCodeWithConstString")
public void testJsCodeWithConstString() throws Exception {
runTest("js/js.translator/testData/incremental/invalidation/jsCodeWithConstString/");
}
@TestMetadata("jsExport")
public void testJsExport() throws Exception {
runTest("js/js.translator/testData/incremental/invalidation/jsExport/");