Temporarily turn off source map generation in JS IC tests

Until IncrementalJsCompilerRunnerTestGenerated$ClassHierarchyAffected.testEnumEntryRemoved 
is fixed
This commit is contained in:
Alexey Tsvetkov
2018-04-03 21:10:42 +03:00
parent 6f59b6da8e
commit 650e97f200
@@ -37,7 +37,7 @@ abstract class AbstractIncrementalJsCompilerRunnerTest : AbstractIncrementalComp
override fun createCompilerArguments(destinationDir: File, testDir: File): K2JSCompilerArguments =
K2JSCompilerArguments().apply {
outputFile = File(destinationDir, "${testDir.name}.js").path
sourceMap = true
sourceMap = false
metaInfo = true
}
}