You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
efps — editor "frames per second". The number of updates assumed to be possible within a second.
Derived from input latency. efps = 1000 / input_latency
Detailed information
🏠 Reference result
The performance result of sanity@latest
Benchmark
latency
p75
p90
p99
blocking time
test duration
article (title)
52ms
59ms
88ms
207ms
616ms
13.1s
article (body)
23ms
32ms
68ms
131ms
268ms
7.0s
article (string inside object)
45ms
48ms
57ms
150ms
342ms
7.7s
article (string inside array)
50ms
53ms
62ms
201ms
363ms
7.9s
recipe (name)
27ms
30ms
35ms
49ms
5ms
8.9s
recipe (description)
23ms
26ms
29ms
34ms
0ms
5.1s
recipe (instructions)
6ms
10ms
11ms
26ms
0ms
3.1s
singleString (stringField)
22ms
24ms
27ms
42ms
0ms
8.0s
synthetic (title)
63ms
66ms
72ms
100ms
1156ms
15.7s
synthetic (string inside object)
63ms
64ms
77ms
129ms
1147ms
8.4s
🧪 Experiment result
The performance result of this branch
Benchmark
latency
p75
p90
p99
blocking time
test duration
article (title)
45ms
51ms
71ms
155ms
375ms
12.9s
article (body)
24ms
25ms
39ms
80ms
116ms
6.4s
article (string inside object)
45ms
48ms
51ms
53ms
148ms
7.0s
article (string inside array)
48ms
51ms
58ms
140ms
240ms
7.6s
recipe (name)
27ms
31ms
38ms
52ms
0ms
8.4s
recipe (description)
25ms
27ms
30ms
47ms
0ms
5.4s
recipe (instructions)
8ms
11ms
11ms
20ms
0ms
3.2s
singleString (stringField)
21ms
23ms
25ms
28ms
0ms
6.9s
synthetic (title)
63ms
68ms
72ms
127ms
1056ms
14.8s
synthetic (string inside object)
63ms
70ms
86ms
428ms
1361ms
9.6s
📚 Glossary
column definitions
benchmark — the name of the test, e.g. "article", followed by the label of the field being measured, e.g. "(title)".
latency — the time between when a key was pressed and when it was rendered. derived from a set of samples. the median (p50) is shown to show the most common latency.
p75 — the 75th percentile of the input latency in the test run. 75% of the sampled inputs in this benchmark were processed faster than this value. this provides insight into the upper range of typical performance.
p90 — the 90th percentile of the input latency in the test run. 90% of the sampled inputs were faster than this. this metric helps identify slower interactions that occurred less frequently during the benchmark.
p99 — the 99th percentile of the input latency in the test run. only 1% of sampled inputs were slower than this. this represents the worst-case scenarios encountered during the benchmark, useful for identifying potential performance outliers.
blocking time — the total time during which the main thread was blocked, preventing user input and UI updates. this metric helps identify performance bottlenecks that may cause the interface to feel unresponsive.
test duration — how long the test run took to complete.
To run the E2E tests locally, you can use the following environment variables, then run pnpm test:e2e --ui to open the Playwright test runner.
💬 Remember to build the project first with pnpm build:e2e.
SANITY_E2E_PROJECT_ID=ittbm412
SANITY_E2E_BASE_URL=https://e2e-studio-wwxuh3w62.sanity.dev
SANITY_E2E_DATASET="update depending the project you want to test (pr-10669-chromium-17914658862 || pr-10669-firefox-17914658862 )"
SANITY_E2E_DATASET_CHROMIUM=pr-10669-chromium-17914658862
SANITY_E2E_DATASET_FIREFOX=pr-10669-firefox-17914658862
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
What to review
Testing
Notes for release