Skip to content

Commit dcf43c2

Browse files
authored
Merge pull request #2873 from codecrafters-io/arpan/cc-1767-investigate-why-rive-tests-are-flaky
Flakiness should be fixed for Rive
2 parents 5f36820 + 07778dd commit dcf43c2

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

tests/integration/components/rive-animation-test.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ module('Integration | Component | rive-animation', function (hooks) {
4343

4444
return false;
4545
},
46-
{ timeout: 5000 },
46+
{
47+
timeout: 10_000,
48+
timeoutMessage: 'Animation did not render in 10 seconds',
49+
},
4750
);
4851

4952
// Final check for non-transparent pixels
@@ -96,7 +99,10 @@ module('Integration | Component | rive-animation', function (hooks) {
9699

97100
return false;
98101
},
99-
{ timeout: 5000 },
102+
{
103+
timeout: 10_000,
104+
timeoutMessage: 'Animation did not render in 10 seconds',
105+
},
100106
);
101107

102108
// Final check for non-transparent pixels

0 commit comments

Comments
 (0)