kibana/packages/eslint-config-kibana/jest.js
Kim Joar Bekkelund fc265294f5
Use Jest on cli tests (#16389)
* Move CLI tests to Jest

* Get rid of logs from the output

* Allow skipped tests

* Move integration tests into integration_tests folder
2018-04-10 12:12:47 +02:00

19 lines
290 B
JavaScript

module.exports = {
overrides: [
{
files: ['**/*.test.js'],
plugins: [
'jest',
],
env: {
'jest/globals': true,
},
rules: {
'jest/no-focused-tests': 'error',
'jest/no-identical-title': 'error',
},
}
]
};