Skip to content

Commit 77acac0

Browse files
committed
Update antipattern 1 description
1 parent 31c0f93 commit 77acac0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

examples/automated-testing-performance-tests.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
## Antipattern 1: Ignoring Think Time
44

5-
Not including think time between user actions can lead to unrealistic performance metrics. In this example, the user actions are executed without any delay, which is unrealistic.
5+
Excluding think time between user actions can result in unrealistic performance
6+
metrics for certain types of tests, such as average, stress, and soak tests.
7+
However, think time is less critical for tests like breakpoint and spike tests,
8+
as other parameters can control these scenarios effectively. Incorporating
9+
think time is crucial when simulating real user behavior based on user
10+
scenarios. In the provided example, user actions are executed without any delay,
11+
which does not accurately reflect real-world conditions for this type of test.
612

713
```javascript
814
export default function () {

0 commit comments

Comments
 (0)