Use a random number instead of hard coded in test

This commit is contained in:
Gabe Kangas
2023-01-22 20:43:01 -08:00
parent 96f2015fbf
commit 748219d93e
2 changed files with 5 additions and 5 deletions

View File

@@ -92,7 +92,7 @@ const appearanceValues = {
const streamOutputVariants = {
videoBitrate: randomNumber() * 100,
framerate: 42,
cpuUsageLevel: 2,
cpuUsageLevel: randomNumber(4, 0),
scaledHeight: randomNumber() * 100,
scaledWidth: randomNumber() * 100,
};