babel / babel-brunch

Brunch plugin for Babel
ISC License
69 stars 38 forks source link

Update tests to actuall behavior #46

Closed denysdovhan closed 7 years ago

denysdovhan commented 7 years ago

Related to: https://github.com/babel/babel-brunch/pull/45#issuecomment-269006540

Fix problem with single-var notation:

Expected:

var a = c.a;
var b = c.b;

But got actual:

"use strict";

var c = {};
var a = c.a,
    b = c.b;