mirror of https://github.com/lukechilds/rollup.git
Bogdan Chadkin
9 years ago
6 changed files with 77 additions and 18 deletions
@ -0,0 +1,13 @@ |
|||
var path = require( 'path' ); |
|||
var assert = require( 'assert' ); |
|||
|
|||
module.exports = { |
|||
description: 'user-facing bundle has resolvedIds map in every modules', |
|||
bundle: function ( bundle ) { |
|||
assert.ok( bundle.modules[ 0 ].resolvedIds ); |
|||
assert.ok( bundle.modules[ 1 ].resolvedIds ); |
|||
assert.equal( Object.keys( bundle.modules[ 0 ].resolvedIds ).length, 0 ); |
|||
assert.equal( Object.keys( bundle.modules[ 1 ].resolvedIds ).length, 1 ); |
|||
assert.equal( bundle.modules[ 1 ].resolvedIds[ './foo' ], path.resolve( __dirname, 'foo.js' ) ); |
|||
} |
|||
}; |
@ -0,0 +1 @@ |
|||
export default 42; |
@ -0,0 +1,2 @@ |
|||
import foo from './foo'; |
|||
assert.equal( foo, 42 ); |
Loading…
Reference in new issue