Skip to content

Commit 7b56492

Browse files
committed
Update leadfoot, fix ProxiedSession test
1 parent 19aff21 commit 7b56492

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

docs/api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15310,8 +15310,8 @@
1531015310
"name": "CancellablePromise",
1531115311
"typeArguments": [
1531215312
{
15313-
"type": "intrinsic",
15314-
"name": "any"
15313+
"type": "typeParameter",
15314+
"name": "T"
1531515315
}
1531615316
]
1531715317
},

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"dependencies": {
6363
"@theintern/common": "~0.1.3",
6464
"@theintern/digdug": "~2.2.3",
65-
"@theintern/leadfoot": "~2.2.3",
65+
"@theintern/leadfoot": "~2.2.4",
6666
"@types/benchmark": "~1.0.30",
6767
"@types/chai": "~4.1.4",
6868
"@types/charm": "~1.0.0",

tests/functional/lib/ProxiedSession.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ registerSuite('lib/ProxiedSession (functional)', () => {
5454
if (path === 'url') {
5555
lastUrl = data.url;
5656
} else if (
57-
path === 'execute' &&
57+
// Path will be `execute/sync` for W3C, or just `execute` for JWP
58+
/execute\/?/.test(path) &&
5859
data.args &&
5960
data.args[0] === '__testCoverage'
6061
) {

0 commit comments

Comments
 (0)