mediawiki-extensions-Echo/tests/selenium/.eslintrc.json
Željko Filipin 53d849b3c9 selenium: Make it possible to run tests from Echo folder
Until now, Echo tests had to be run from mediawiki/core folder.

Add an independant 'npm run selenium-test' entry point
for local development. It comes with a minimal wdio.conf.js file that contains
only non-default settings, and runs only specs from this extension.
This also makes it so that screenshots are saved to this repo's
log directory instead of core's.

Bug: T171848
Change-Id: I1396f8d856c6cb1ad9818abf4ba09a4fcefdcfdc
2018-06-22 14:17:05 +00:00

15 lines
160 B
JSON

{
"extends": "wikimedia",
"env": {
"es6": true,
"mocha": true,
"node": true
},
"globals": {
"browser": false
},
"rules": {
"no-console": 0
}
}