mirror of https://github.com/lukechilds/rollup.git
Rich Harris
9 years ago
2 changed files with 21 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||
var assert = require( 'assert' ); |
|||
|
|||
module.exports = { |
|||
description: 'throws error if load returns something wacky', |
|||
options: { |
|||
plugins: [{ |
|||
load: function () { |
|||
return 42; |
|||
} |
|||
}] |
|||
}, |
|||
error: function ( err ) { |
|||
assert.ok( /load hook should return a string, a \{ code, map \} object, or nothing\/null/.test( err.message ) ); |
|||
} |
|||
}; |
Loading…
Reference in new issue