Skip to content

Commit 7ddd604

Browse files
committed
fix: formatting
1 parent e286df1 commit 7ddd604

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

packages/storage/e2e/StorageTask.e2e.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -928,11 +928,7 @@ describe('storage() -> StorageTask', function () {
928928
const { getStorage, ref, uploadString, StringFormat } = storageModular;
929929
const dataUrl = '';
930930
try {
931-
await uploadString(
932-
ref(getStorage(), '/a.b'),
933-
dataUrl,
934-
StringFormat.DATA_URL,
935-
);
931+
await uploadString(ref(getStorage(), '/a.b'), dataUrl, StringFormat.DATA_URL);
936932

937933
return Promise.reject(new Error('Did not throw!'));
938934
} catch (error) {
@@ -1157,7 +1153,7 @@ describe('storage() -> StorageTask', function () {
11571153
});
11581154

11591155
it('should have access to the snapshot values outside of the Task thennable', async function () {
1160-
const { getStorage, ref, uploadString, TaskState } = storageModular;
1156+
const { getStorage, ref, uploadString } = storageModular;
11611157

11621158
const uploadTaskSnapshot = uploadString(
11631159
ref(getStorage(), `${PATH}/putStringBlob.json`),

0 commit comments

Comments
 (0)