Nicolò Ribaudo ea6a438315
Enable external-helpers by default in tests (#12911)
Co-authored-by: Huáng Jùnliàng <jlhwung@gmail.com>
Co-authored-by: Babel Bot <babel-bot@users.noreply.github.com>
2021-02-26 23:33:26 +01:00

49 lines
1.1 KiB
JavaScript

var Example = /*#__PURE__*/function () {
"use strict";
function Example() {}
var _proto = Example.prototype;
_proto.test1 = /*#__PURE__*/function () {
var _test = babelHelpers.asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
return regeneratorRuntime.wrap(function _callee$(_context) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
_context.next = 2;
return Promise.resolve(2);
case 2:
case "end":
return _context.stop();
}
}
}, _callee);
}));
function test1() {
return _test.apply(this, arguments);
}
return test1;
}();
_proto.test2 = /*#__PURE__*/regeneratorRuntime.mark(function test2() {
return regeneratorRuntime.wrap(function test2$(_context2) {
while (1) {
switch (_context2.prev = _context2.next) {
case 0:
_context2.next = 2;
return 3;
case 2:
case "end":
return _context2.stop();
}
}
}, test2);
});
return Example;
}();