eslint-plugin-wdio 7.20.8 → 7.25.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/constants.d.ts.map +1 -1
- package/build/constants.js +2 -0
- package/build/rules/await-expect.js +1 -1
- package/build/rules/no-debug.js +1 -1
- package/build/rules/no-pause.js +1 -1
- package/package.json +2 -2
- package/src/constants.ts +2 -0
- package/src/rules/await-expect.ts +1 -1
- package/src/rules/no-debug.ts +1 -1
- package/src/rules/no-pause.ts +1 -1
package/build/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,UAkCpB,CAAA"}
|
package/build/constants.js
CHANGED
|
@@ -7,7 +7,7 @@ const rule = {
|
|
|
7
7
|
docs: {
|
|
8
8
|
description: 'expect must be prefixed with await',
|
|
9
9
|
category: 'Possible Errors',
|
|
10
|
-
url: 'https://github.com/webdriverio/packages/eslint-plugin-wdio/docs/rules/await-expect.md',
|
|
10
|
+
url: 'https://github.com/webdriverio/webdriverio/blob/main/packages/eslint-plugin-wdio/docs/rules/await-expect.md',
|
|
11
11
|
recommended: false,
|
|
12
12
|
},
|
|
13
13
|
messages: {
|
package/build/rules/no-debug.js
CHANGED
|
@@ -7,7 +7,7 @@ const rule = {
|
|
|
7
7
|
docs: {
|
|
8
8
|
description: 'Disallow browser.debug() in tests',
|
|
9
9
|
category: 'Possible Errors',
|
|
10
|
-
url: 'https://github.com/webdriverio/packages/eslint-plugin-wdio/docs/rules/no-debug.md',
|
|
10
|
+
url: 'https://github.com/webdriverio/webdriverio/blob/main/packages/eslint-plugin-wdio/docs/rules/no-debug.md',
|
|
11
11
|
recommended: false,
|
|
12
12
|
},
|
|
13
13
|
messages: {
|
package/build/rules/no-pause.js
CHANGED
|
@@ -7,7 +7,7 @@ const rule = {
|
|
|
7
7
|
docs: {
|
|
8
8
|
description: 'Disallow browser.pause() in tests',
|
|
9
9
|
category: 'Possible Errors',
|
|
10
|
-
url: 'https://github.com/webdriverio/packages/eslint-plugin-wdio/docs/rules/no-pause.md',
|
|
10
|
+
url: 'https://github.com/webdriverio/webdriverio/blob/main/packages/eslint-plugin-wdio/docs/rules/no-pause.md',
|
|
11
11
|
recommended: false,
|
|
12
12
|
},
|
|
13
13
|
messages: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-wdio",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.25.3",
|
|
4
4
|
"description": "Eslint rules for WebdriverIO",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/eslint-plugin-wdio",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"@types/estree": "^1.0.0",
|
|
28
28
|
"eslint": "^8.10.0"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "708231ec4ceaedc33eb81426e9a71529058ec040"
|
|
31
31
|
}
|
package/src/constants.ts
CHANGED
|
@@ -9,7 +9,7 @@ const rule: Rule.RuleModule = {
|
|
|
9
9
|
docs: {
|
|
10
10
|
description: 'expect must be prefixed with await',
|
|
11
11
|
category: 'Possible Errors',
|
|
12
|
-
url: 'https://github.com/webdriverio/packages/eslint-plugin-wdio/docs/rules/await-expect.md',
|
|
12
|
+
url: 'https://github.com/webdriverio/webdriverio/blob/main/packages/eslint-plugin-wdio/docs/rules/await-expect.md',
|
|
13
13
|
recommended: false,
|
|
14
14
|
},
|
|
15
15
|
messages: {
|
package/src/rules/no-debug.ts
CHANGED
|
@@ -7,7 +7,7 @@ const rule: Rule.RuleModule = {
|
|
|
7
7
|
docs: {
|
|
8
8
|
description: 'Disallow browser.debug() in tests',
|
|
9
9
|
category: 'Possible Errors',
|
|
10
|
-
url: 'https://github.com/webdriverio/packages/eslint-plugin-wdio/docs/rules/no-debug.md',
|
|
10
|
+
url: 'https://github.com/webdriverio/webdriverio/blob/main/packages/eslint-plugin-wdio/docs/rules/no-debug.md',
|
|
11
11
|
recommended: false,
|
|
12
12
|
},
|
|
13
13
|
messages: {
|
package/src/rules/no-pause.ts
CHANGED
|
@@ -7,7 +7,7 @@ const rule: Rule.RuleModule = {
|
|
|
7
7
|
docs: {
|
|
8
8
|
description: 'Disallow browser.pause() in tests',
|
|
9
9
|
category: 'Possible Errors',
|
|
10
|
-
url: 'https://github.com/webdriverio/packages/eslint-plugin-wdio/docs/rules/no-pause.md',
|
|
10
|
+
url: 'https://github.com/webdriverio/webdriverio/blob/main/packages/eslint-plugin-wdio/docs/rules/no-pause.md',
|
|
11
11
|
recommended: false,
|
|
12
12
|
},
|
|
13
13
|
messages: {
|