Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 062ff2f

Browse files
committed
style(upload): be pretty
1 parent 9afce94 commit 062ff2f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lib/sdk.spec.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,11 @@ test.serial('Upload file on Browser', async t => {
449449
browserEnv(['window']);
450450
const globalAny: any = global;
451451
const form = new globalAny.window.FormData();
452-
form.append('files', new globalAny.window.Blob(['foo'], { type: 'text/plain' }), 'file-name.ext');
452+
form.append(
453+
'files',
454+
new globalAny.window.Blob(['foo'], { type: 'text/plain' }),
455+
'file-name.ext'
456+
);
453457
await t.context.strapi.upload(form);
454458

455459
t.true(

0 commit comments

Comments
 (0)