We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ca4d4 commit 6edf421Copy full SHA for 6edf421
test/functional.js
@@ -1537,6 +1537,15 @@ module.exports = {
1537
config.enableSassLoader();
1538
config.enableLessLoader();
1539
config.enableTypeScriptLoader();
1540
+ config.configureBabel(function(config) {
1541
+ config.presets = [
1542
+ ['@babel/preset-env', {
1543
+ 'targets': {
1544
+ 'chrome': 52
1545
+ }
1546
+ }]
1547
+ ];
1548
+ });
1549
1550
testSetup.runWebpack(config, (webpackAssert) => {
1551
expect(config.outputPath).to.be.a.directory().with.deep.files([
0 commit comments