We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7b23bff + 48e883b commit 4b9f400Copy full SHA for 4b9f400
setup.js
@@ -40,7 +40,7 @@ module.exports = async function () {
40
promises.push(waitForLocalhost(port));
41
}
42
43
- const {TableNames: tableNames} = await Promise.race(promises);
+ const [{TableNames: tableNames}] = await Promise.all(promises);
44
await deleteTables(dynamoDB, tableNames); // cleanup leftovers
45
} catch (err) {
46
// eslint-disable-next-line no-console
0 commit comments