Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// regression test for async/await
// code inspired by https://github.com/formium/tsdx/issues/869
let shouldBeTrue = false;
(async () => {
shouldBeTrue = true; // a side effect to make sure this is output
await Promise.resolve();
})();
export async function testAsync() {
return await Promise.resolve(shouldBeTrue);
}