Fix the dangling promises

This commit is contained in:
Aria Minaei 2023-08-03 10:46:36 +02:00
parent 27f918f53c
commit 041627f7e4
19 changed files with 112 additions and 67 deletions

View file

@ -106,6 +106,6 @@ async function test1() {
iterateOnSequence()
}
test1().then(() => {
void test1().then(() => {
console.log('test1 done')
})