diff --git a/compiler/test/ut/import/importExportNest.ts b/compiler/test/ut/import/importExportNest.ts index d1f25f0..8463227 100644 --- a/compiler/test/ut/import/importExportNest.ts +++ b/compiler/test/ut/import/importExportNest.ts @@ -44,9 +44,7 @@ struct ImportTest { ` exports.expectResult = -`"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const ImportNestAll_1 = require("./test/pages/ImportNestAll"); +`import { Base, BaseTest } from './test/pages/ImportNestAll'; class ImportTest extends View { constructor(compilerAssignedUniqueChildId, parent, params) { super(compilerAssignedUniqueChildId, parent); @@ -127,7 +125,7 @@ class ImportTest extends View { Column.create(); let earlierCreatedChild_2 = this.findChildById("2"); if (earlierCreatedChild_2 == undefined) { - View.create(new ImportNestAll_1.Base("2", this, { + View.create(new Base("2", this, { testStr: this.__testState1, testNum: this.__testState2, testObj: this.__testState3 @@ -139,7 +137,7 @@ class ImportTest extends View { } let earlierCreatedChild_3 = this.findChildById("3"); if (earlierCreatedChild_3 == undefined) { - View.create(new ImportNestAll_1.BaseTest("3", this, { + View.create(new BaseTest("3", this, { testStr: this.__testState4, testNum: this.__testState5, testObj: this.__testState6