diff --git a/js/js.translator/testData/typescript-export/inheritance/inheritance__main.js b/js/js.translator/testData/typescript-export/inheritance/inheritance__main.js index 9540ab956b0..4f59b96438a 100644 --- a/js/js.translator/testData/typescript-export/inheritance/inheritance__main.js +++ b/js/js.translator/testData/typescript-export/inheritance/inheritance__main.js @@ -26,12 +26,12 @@ var Impl = /** @class */ (function (_super) { }; Object.defineProperty(Impl.prototype, "acAbstractProp", { get: function () { return "Impl"; }, - enumerable: false, + enumerable: true, configurable: true }); Object.defineProperty(Impl.prototype, "y", { get: function () { return true; }, - enumerable: false, + enumerable: true, configurable: true }); return Impl;