diff --git a/test/core/fixtures/transformation/es7.trailing-function-commas/new-expression/actual.js b/test/core/fixtures/transformation/es7.trailing-function-commas/new-expression/actual.js new file mode 100644 index 0000000000..8b6de60f82 --- /dev/null +++ b/test/core/fixtures/transformation/es7.trailing-function-commas/new-expression/actual.js @@ -0,0 +1 @@ +new Foo(a, b,); diff --git a/test/core/fixtures/transformation/es7.trailing-function-commas/new-expression/expected.js b/test/core/fixtures/transformation/es7.trailing-function-commas/new-expression/expected.js new file mode 100644 index 0000000000..70e032ca1c --- /dev/null +++ b/test/core/fixtures/transformation/es7.trailing-function-commas/new-expression/expected.js @@ -0,0 +1,3 @@ +"use strict"; + +new Foo(a, b);