mirror of https://github.com/lukechilds/rollup.git
Rich Harris
8 years ago
committed by
GitHub
3 changed files with 13 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||||
|
var assert = require( 'assert' ); |
||||
|
|
||||
|
module.exports = { |
||||
|
description: 'checks that entry is resolved', |
||||
|
options: { |
||||
|
entry: '/not/a/path/that/actually/really/exists' |
||||
|
}, |
||||
|
error: function ( err ) { |
||||
|
assert.ok( /Could not resolve entry/.test( err.message ) ); |
||||
|
} |
||||
|
}; |
@ -0,0 +1 @@ |
|||||
|
throw new Error('should not be reached'); |
Loading…
Reference in new issue