summaryrefslogtreecommitdiffstats
path: root/devtools/client/performance-new/test/browser
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
commit8dd16259287f58f9273002717ec4d27e97127719 (patch)
tree3863e62a53829a84037444beab3abd4ed9dfc7d0 /devtools/client/performance-new/test/browser
parentReleasing progress-linux version 126.0.1-1~progress7.99u1. (diff)
downloadfirefox-8dd16259287f58f9273002717ec4d27e97127719.tar.xz
firefox-8dd16259287f58f9273002717ec4d27e97127719.zip
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/performance-new/test/browser')
-rw-r--r--devtools/client/performance-new/test/browser/browser_interaction-between-interfaces.js17
1 files changed, 5 insertions, 12 deletions
diff --git a/devtools/client/performance-new/test/browser/browser_interaction-between-interfaces.js b/devtools/client/performance-new/test/browser/browser_interaction-between-interfaces.js
index 1268cf818d..6171ed546c 100644
--- a/devtools/client/performance-new/test/browser/browser_interaction-between-interfaces.js
+++ b/devtools/client/performance-new/test/browser/browser_interaction-between-interfaces.js
@@ -294,18 +294,11 @@ add_task(async function test_change_in_about_profiling() {
"The new value should have the same count of threads as the old value, please double check the test code."
);
setThreadInputValue(newThreadValue);
- checkDevtoolsCustomPresetContent(
- devtoolsDocument,
- `
- Interval: 2 ms
- Threads: GeckoMain, Dummy
- JavaScript
- Native Stacks
- CPU Utilization
- Audio Callback Tracing
- IPC Messages
- Process CPU Utilization
- `
+ ok(
+ getDevtoolsCustomPresetContent(devtoolsDocument).includes(
+ "Threads: GeckoMain, Dummy\n"
+ ),
+ "Threads list should match the changed value"
);
}
);