Skip to content

Commit

Permalink
fixing tests finally
Browse files Browse the repository at this point in the history
  • Loading branch information
prateekbh committed Jun 6, 2019
1 parent 6956835 commit 3b7322e
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 41 deletions.
38 changes: 19 additions & 19 deletions tests/multiple-entry-files/fixtures/output.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,28 +88,28 @@
/* 0 */
/***/ (function(module, exports, __webpack_require__) {

__webpack_require__(1);
module.exports = __webpack_require__(2);
__webpack_require__(1);
module.exports = __webpack_require__(2);


/***/ }),
/* 1 */
/***/ (function(module, exports) {
/***/ }),
/* 1 */
/***/ (function(module, exports) {

let config = {
a: 10,
b: 20
};
const {
a
} = config;
let config = {
a: 10,
b: 20
};
const {
a
} = config;

/***/ }),
/* 2 */
/***/ (function(module, exports) {
/***/ }),
/* 2 */
/***/ (function(module, exports) {

const init = [1, 2, 3, 4];
const final = [...init, 5];
const init = [1, 2, 3, 4];
const final = [...init, 5];

/***/ })
/******/ ]);
/***/ })
/******/ ]);
22 changes: 11 additions & 11 deletions tests/require-resolve/fixtures/output.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,15 @@
/* 0 */
/***/ (function(module, exports) {

let config = {
a: 10,
b: 20
};
const {
a
} = config;
const init = [1, 2, 3, 4];
const final = [...init, 5];
let config = {
a: 10,
b: 20
};
const {
a
} = config;
const init = [1, 2, 3, 4];
const final = [...init, 5];

/***/ })
/******/ ]);
/***/ })
/******/ ]);
22 changes: 11 additions & 11 deletions tests/single-loader/fixtures/output.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,15 @@
/* 0 */
/***/ (function(module, exports) {

let config = {
a: 10,
b: 20
};
const {
a
} = config;
const init = [1, 2, 3, 4];
const final = [...init, 5];
let config = {
a: 10,
b: 20
};
const {
a
} = config;
const init = [1, 2, 3, 4];
const final = [...init, 5];

/***/ })
/******/ ]);
/***/ })
/******/ ]);

0 comments on commit 3b7322e

Please sign in to comment.