Last active
September 27, 2018 17:17
-
-
Save tbranyen/8648019e37e7d65a9100b5c5907669c2 to your computer and use it in GitHub Desktop.
CommonJS Tree Shaking Test Case
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
it('will treekshake a static named import', async () => { | |
const input = register('./a')` | |
const { a } = require('./b'); | |
console.log(a); | |
`; | |
register('./b')` | |
function b() {} | |
exports.a = 'hello world'; | |
exports.b = b; | |
`; | |
const { source } = await webapp({ | |
...defaults, | |
input, | |
inputType, | |
}); | |
equal(source.code, format` | |
var module = { | |
exports: {} | |
}; | |
var exports = module.exports; | |
exports.a = 'hello world'; | |
const a = exports.a; | |
var a_module_1 = { | |
exports: {} | |
}; | |
var a_exports_1 = a_module_1.exports; | |
console.log(a); | |
this.webapp = a_module_1.exports; | |
`); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment