Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
(async () => {
try {
await openBrowserAndStartScreencast(
path.join('captures', 'file-upload', 'file-upload.gif'),
);
await goto('http://localhost:3000/upload');
await attach(
path.join(__dirname, 'data', 'foo.txt'),
fileField(above(button('Upload'))),
);
await click('Upload');
var exists = await text('file uploaded!').exists();
expect(exists).to.be.true;
} catch (e) {
console.error(e);
process.exitCode = 1;
} finally {
await closeBrowserAndStopScreencast();
}
})();