xdescribe does not work in webdriverio to blacklist files because webdriverio does not prescan files for tests. when using xdescribe, selenium will still boot up a node in order to try to serve that file which is a waste. (webdriverio-no-xdescribe)
This rule aims to...
The following patterns are considered warnings:
xdescribe('login page', () => {
it('renders login form', () => {
...
});
});The following patterns are not warnings:
describe('login page', () => {
it('renders login form', () => {
...
});
});If there are any options, describe them here. Otherwise, delete this section.
Give a short description of when it would be appropriate to turn off this rule.
If there are other links that describe the issue this rule addresses, please include them here in a bulleted list.