13 lines
319 B
JavaScript
13 lines
319 B
JavaScript
'use strict';
|
|
|
|
require(
|
|
'mocha-eslint')([__dirname + '/..'],
|
|
{
|
|
// Increase the timeout of the test if linting takes to long
|
|
'timeout': 5000, // Defaults to the global mocha `timeout` option
|
|
|
|
// Increase the time until a test is marked as slow
|
|
'slow': 1000, // Defaults to the global mocha `slow` option
|
|
}
|
|
);
|