add test for export of sequence

This commit is contained in:
Fábio Santos 2018-03-09 21:30:04 +00:00
parent 113a5236bc
commit 2aed51a95a

View File

@ -280,6 +280,13 @@ export_default_anonymous_function: {
expect_exact: "export default function(){foo()};"
}
export_default_seq: {
input: {
export default (1, 2)
}
expect_exact: "export default(1,2);"
}
export_default_arrow: {
options = {
reduce_vars: true,