Skip to content

Commit

Permalink
Remove env preset from tests
Browse files Browse the repository at this point in the history
(Review by @hzoo)
  • Loading branch information
nicolo-ribaudo committed Aug 17, 2018
1 parent b6d3081 commit ba7d327
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 30 deletions.
@@ -1,30 +1,31 @@
var Foo = babelHelpers.decorate([function (_) {
return desc = _;
}], function (_initialize) {
let Foo = babelHelpers.decorate([_ => desc = _], function (_initialize) {
"use strict";

var Foo = function Foo() {
"use strict";
class Foo {
constructor() {
_initialize(this);
}

babelHelpers.classCallCheck(this, Foo);

_initialize(this);
};
}

return {
F: Foo,
d: [{
kind: "method",
key: getKey(),
value: function value() {

value() {
return 1;
}

}, {
kind: "method",
key: getKey(),
value: function value() {

value() {
return 2;
}

}]
};
});
@@ -1,30 +1,31 @@
var Foo = babelHelpers.decorate([function (_) {
return desc = _;
}], function (_initialize) {
let Foo = babelHelpers.decorate([_ => desc = _], function (_initialize) {
"use strict";

var Foo = function Foo() {
"use strict";
class Foo {
constructor() {
_initialize(this);
}

babelHelpers.classCallCheck(this, Foo);

_initialize(this);
};
}

return {
F: Foo,
d: [{
kind: "method",
key: getKeyI(),
value: function value() {

value() {
return 1;
}

}, {
kind: "method",
key: getKeyJ(),
value: function value() {

value() {
return 2;
}

}]
};
});
Expand Up @@ -3,6 +3,5 @@
["proposal-decorators", { "decoratorsBeforeExport": false }],
"proposal-class-properties",
"external-helpers"
],
"presets": ["env"]
]
}
Expand Up @@ -3,6 +3,5 @@
["proposal-decorators", { "decoratorsBeforeExport": false }],
"proposal-class-properties",
"external-helpers"
],
"presets": ["env"]
]
}
Expand Up @@ -3,6 +3,5 @@
["proposal-decorators", { "decoratorsBeforeExport": false }],
"proposal-class-properties",
"external-helpers"
],
"presets": ["env"]
]
}
Expand Up @@ -3,6 +3,5 @@
["proposal-decorators", { "decoratorsBeforeExport": false }],
"proposal-class-properties",
"external-helpers"
],
"presets": ["env"]
]
}

0 comments on commit ba7d327

Please sign in to comment.