diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-10-04 11:56:47 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-10-04 11:56:47 +0900 |
| commit | cc4fd6b5c5ecff929930f82fed01ce5f756b2651 (patch) | |
| tree | 9d81cbcab92e27b015f2743f2611ddb466fa9a8b | |
| parent | tweak (diff) | |
| download | sharkey-cc4fd6b5c5ecff929930f82fed01ce5f756b2651.tar.gz sharkey-cc4fd6b5c5ecff929930f82fed01ce5f756b2651.tar.bz2 sharkey-cc4fd6b5c5ecff929930f82fed01ce5f756b2651.zip | |
fix flaky test
| -rw-r--r-- | packages/backend/test/e2e/timelines.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/backend/test/e2e/timelines.ts b/packages/backend/test/e2e/timelines.ts index 10840b1336..edb0b684ba 100644 --- a/packages/backend/test/e2e/timelines.ts +++ b/packages/backend/test/e2e/timelines.ts @@ -729,6 +729,7 @@ describe('Timelines', () => { const [alice, bob] = await Promise.all([signup(), signup()]); await api('/following/create', { userId: bob.id }, alice); + await sleep(1000); const bobNote = await post(bob, { text: 'hi', visibility: 'followers' }); await sleep(100); // redisに追加されるのを待つ |