From 5b646ba4fab31fa979494a6242000584452d72b0 Mon Sep 17 00:00:00 2001 From: Alexey Tsvetkov Date: Tue, 12 Dec 2017 15:02:20 +0300 Subject: [PATCH] Generate source maps in JS IC tests #KT-21700 fixed --- .../incremental/AbstractIncrementalJsCompilerRunnerTest.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/incremental-compilation-impl/test/org/jetbrains/kotlin/incremental/AbstractIncrementalJsCompilerRunnerTest.kt b/compiler/incremental-compilation-impl/test/org/jetbrains/kotlin/incremental/AbstractIncrementalJsCompilerRunnerTest.kt index 6bcc683418a..718ef3782fb 100644 --- a/compiler/incremental-compilation-impl/test/org/jetbrains/kotlin/incremental/AbstractIncrementalJsCompilerRunnerTest.kt +++ b/compiler/incremental-compilation-impl/test/org/jetbrains/kotlin/incremental/AbstractIncrementalJsCompilerRunnerTest.kt @@ -37,5 +37,6 @@ abstract class AbstractIncrementalJsCompilerRunnerTest : AbstractIncrementalComp override fun createCompilerArguments(destinationDir: File, testDir: File): K2JSCompilerArguments = K2JSCompilerArguments().apply { outputFile = File(destinationDir, "${testDir.name}.js").path + sourceMap = true } } \ No newline at end of file