summaryrefslogtreecommitdiffstats
path: root/remote/cdp/test/browser/network/browser_responseReceived.js
diff options
context:
space:
mode:
Diffstat (limited to 'remote/cdp/test/browser/network/browser_responseReceived.js')
-rw-r--r--remote/cdp/test/browser/network/browser_responseReceived.js20
1 files changed, 12 insertions, 8 deletions
diff --git a/remote/cdp/test/browser/network/browser_responseReceived.js b/remote/cdp/test/browser/network/browser_responseReceived.js
index 41e854de8a..5319f0eb65 100644
--- a/remote/cdp/test/browser/network/browser_responseReceived.js
+++ b/remote/cdp/test/browser/network/browser_responseReceived.js
@@ -74,8 +74,9 @@ add_task(async function documentNavigationWithResource({ client }) {
"127.0.0.1",
"Document response has the expected IP address"
);
- ok(
- typeof docResponse.response.remotePort == "number",
+ Assert.equal(
+ typeof docResponse.response.remotePort,
+ "number",
"Document response has a remotePort"
);
}
@@ -112,8 +113,9 @@ add_task(async function documentNavigationWithResource({ client }) {
docResponse.response.remoteIPAddress,
"Script response has same IP address as document response"
);
- ok(
- typeof scriptResponse.response.remotePort == "number",
+ Assert.equal(
+ typeof scriptResponse.response.remotePort,
+ "number",
"Script response has a remotePort"
);
}
@@ -166,8 +168,9 @@ add_task(async function documentNavigationWithResource({ client }) {
"127.0.0.1",
"Subdocument response has the expected IP address"
);
- ok(
- typeof frameDocResponse.response.remotePort == "number",
+ Assert.equal(
+ typeof frameDocResponse.response.remotePort,
+ "number",
"Subdocument response has a remotePort"
);
}
@@ -207,8 +210,9 @@ add_task(async function documentNavigationWithResource({ client }) {
docResponse.response.remoteIPAddress,
"Script response has same IP address as document response"
);
- ok(
- typeof frameScriptResponse.response.remotePort == "number",
+ Assert.equal(
+ typeof frameScriptResponse.response.remotePort,
+ "number",
"Script response has a remotePort"
);
}