test: separate webpack tests so they're not run with the other test
This commit is contained in:
parent
1ee9f1fde4
commit
849846011b
|
@ -4,5 +4,13 @@ require('mocha/mocha.css');
|
|||
// Setup mocha and set it to run tests on window load
|
||||
require('./setup-mocha');
|
||||
|
||||
// Add any new tests to `tests/index.js`
|
||||
var path = require('../shims/path').default;
|
||||
console.log(path.isAbsolute('/a/b'));
|
||||
|
||||
// Add any webpack specific tests here e.g. shim tests
|
||||
require('./spec/shims/fs.spec');
|
||||
require('./spec/shims/path.spec');
|
||||
require('./spec/shims/buffer.spec');
|
||||
|
||||
// Add any other new tests to `tests/index.js`
|
||||
require('./index');
|
||||
|
|
Loading…
Reference in New Issue