move test to export.js

This commit is contained in:
Fábio Santos 2018-03-09 18:14:25 +00:00
parent 402bbda1d1
commit e5a0fcdfc6
2 changed files with 7 additions and 7 deletions

View File

@ -444,3 +444,10 @@ export_default_anonymous_async_function_not_call: {
// agrees with `acorn` and `babylon 7` // agrees with `acorn` and `babylon 7`
expect_exact: "export default async function(){};foo;" expect_exact: "export default async function(){};foo;"
} }
issue_2977: {
input: {
export default (function () {})();
}
expect_exact: "export default(function(){})();"
}

View File

@ -1,7 +0,0 @@
issue_2977: {
input: {
export default (function () {})();
}
expect_exact: "export default(function(){})();"
}