mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
10 years ago
4 changed files with 17 additions and 3 deletions
@ -0,0 +1,9 @@ |
|||||
|
var assert = require( 'assert' ); |
||||
|
|
||||
|
module.exports = { |
||||
|
description: 'inserts newline after comment', |
||||
|
exports: function ( exports ) { |
||||
|
assert.equal( exports(), 42 ); |
||||
|
}, |
||||
|
// solo: true
|
||||
|
}; |
@ -0,0 +1,4 @@ |
|||||
|
// this comment should not affect the line below
|
||||
|
export default function () { |
||||
|
return 42; |
||||
|
} |
Loading…
Reference in new issue