[JS] Fix path of generated js tests

This commit is contained in:
Dmitriy Novozhilov
2020-12-01 13:06:38 +03:00
parent 7550a1870b
commit 91bccad72b
20 changed files with 2 additions and 2 deletions
@@ -21,7 +21,7 @@ fun main(args: Array<String>) {
//generateTestDataForReservedWords()
testGroupSuite(args) {
testGroup("js/js.tests/test-gen", "js/js.translator/testData", testRunnerMethodName = "runTest0") {
testGroup("js/js.tests/tests-gen", "js/js.translator/testData", testRunnerMethodName = "runTest0") {
testClass<AbstractBoxJsTest> {
model("box/", pattern = "^([^_](.+))\\.kt$", targetBackend = TargetBackend.JS)
}
@@ -64,7 +64,7 @@ fun main(args: Array<String>) {
}
}
testGroup("js/js.tests/test-gen", "compiler/testData", testRunnerMethodName = "runTest0") {
testGroup("js/js.tests/tests-gen", "compiler/testData", testRunnerMethodName = "runTest0") {
testClass<AbstractJsCodegenBoxTest> {
model("codegen/box", targetBackend = TargetBackend.JS)
}