[JS] Remove legacy line numbers test

This commit is contained in:
Ilya Goncharov
2023-06-13 13:15:01 +02:00
committed by Space Team
parent 82fa02f71e
commit 08c04af5b5
3 changed files with 0 additions and 366 deletions
@@ -103,10 +103,6 @@ fun main(args: Array<String>) {
model("webDemoExamples/")
}
testClass<AbstractJsLineNumberTest> {
model("lineNumbers/")
}
testClass<AbstractIrBoxJsTest> {
model("box/", pattern = "^([^_](.+))\\.kt$", excludeDirs = listOf("es6classes"))
}
@@ -96,22 +96,3 @@ open class AbstractWebDemoExamplesTest : AbstractJsTest(
}
}
}
open class AbstractJsLineNumberTest : AbstractJsTest(
pathToTestDir = "${JsEnvironmentConfigurator.TEST_DATA_DIR_PATH}/lineNumbers/",
testGroupOutputDirPrefix = "lineNumbers/"
) {
override fun configure(builder: TestConfigurationBuilder) {
super.configure(builder)
with(builder) {
defaultDirectives {
+JsEnvironmentConfigurationDirectives.NO_COMMON_FILES
-JsEnvironmentConfigurationDirectives.GENERATE_NODE_JS_RUNNER
JsEnvironmentConfigurationDirectives.DONT_RUN_GENERATED_CODE.with(listOf("JS", "JS_IR", "JS_IR_ES6"))
}
configureJsArtifactsHandlersStep {
useHandlers(::JsLineNumberHandler)
}
}
}
}