[K/JS TEST] Fix the problem with running JS tests on Windows if the test has a long name
This commit is contained in:
+2
-2
@@ -2,7 +2,7 @@
|
||||
// EXPECTED_REACHABLE_NODES: 1252
|
||||
|
||||
// ES_MODULES
|
||||
// MODULE: overriden_chain_non_export_intermediate
|
||||
// MODULE: intermediate
|
||||
// FILE: lib.kt
|
||||
@JsExport
|
||||
abstract class A {
|
||||
@@ -27,7 +27,7 @@ class C : B() {
|
||||
|
||||
// FILE: entry.mjs
|
||||
// ENTRY_ES_MODULE
|
||||
import { C } from "./overriddenChainNonExportIntermediate-overriden_chain_non_export_intermediate_v5.mjs";
|
||||
import { C } from "./overriddenChainNonExportIntermediate-intermediate_v5.mjs";
|
||||
|
||||
export function box() {
|
||||
const c = new C()
|
||||
|
||||
js/js.translator/testData/box/esModules/export/overriddenChainNonExportIntermediateInExportedFile.kt
Vendored
+2
-2
@@ -2,7 +2,7 @@
|
||||
// DONT_TARGET_EXACT_BACKEND: JS
|
||||
// ES_MODULES
|
||||
|
||||
// MODULE: overriden_chain_non_export_intermediate
|
||||
// MODULE: intermediate
|
||||
// FILE: not_exported.kt
|
||||
abstract class B : A() {
|
||||
abstract fun baz(): String
|
||||
@@ -29,7 +29,7 @@ class C : B() {
|
||||
|
||||
// FILE: main.mjs
|
||||
// ENTRY_ES_MODULE
|
||||
import { C } from "./overriddenChainNonExportIntermediateInExportedFile-overriden_chain_non_export_intermediate_v5.mjs"
|
||||
import { C } from "./overriddenChainNonExportIntermediateInExportedFile-intermediate_v5.mjs"
|
||||
|
||||
export function box() {
|
||||
var c = new C();
|
||||
|
||||
Reference in New Issue
Block a user