mirror of https://github.com/lukechilds/rollup.git
Rich Harris
8 years ago
committed by
GitHub
4 changed files with 25 additions and 6 deletions
@ -0,0 +1,3 @@ |
|||
export default function () { |
|||
assert.ok( false ); |
|||
} |
@ -0,0 +1,8 @@ |
|||
var assert = require( 'assert' ); |
|||
|
|||
module.exports = { |
|||
description: 'insists on correct casing for imports', |
|||
error: function ( err ) { |
|||
assert.ok( /Could not resolve/.test( err.message ) ); |
|||
} |
|||
}; |
@ -0,0 +1,3 @@ |
|||
import foo from './foo.js'; |
|||
|
|||
foo(); |
Loading…
Reference in new issue