Select the types of activity you want to include in your feed.
1(async () => { 2 let p = Promise.resolve(1).then(x => x + 1); 3 console.log(await p); 4 console.log(await p); 5})();