chore: attempt to fix flaky test
This commit is contained in:
parent
e2d5b5928d
commit
cb3cfb7d26
|
@ -17,10 +17,10 @@ export async function restoreMastodonData () {
|
||||||
console.log('Restoring mastodon data...')
|
console.log('Restoring mastodon data...')
|
||||||
const internalIdsToIds = {}
|
const internalIdsToIds = {}
|
||||||
for (const action of actions) {
|
for (const action of actions) {
|
||||||
if (!action.post) {
|
if (!action.post || /@/.test(action.post.text)) {
|
||||||
// If the action is a boost, favorite, etc., then it needs to
|
// If the action is a boost, favorite, mention, etc., then it needs to
|
||||||
// be delayed, otherwise it may appear in an unpredictable order and break the tests.
|
// be delayed, otherwise it may appear in an unpredictable order and break the tests.
|
||||||
await new Promise(resolve => setTimeout(resolve, 1000))
|
await new Promise(resolve => setTimeout(resolve, 1500))
|
||||||
}
|
}
|
||||||
console.log(JSON.stringify(action))
|
console.log(JSON.stringify(action))
|
||||||
const accessToken = users[action.user].accessToken
|
const accessToken = users[action.user].accessToken
|
||||||
|
|
Loading…
Reference in New Issue