@@ -57,14 +57,14 @@ describe('Firebase Storage > Reference', () => {
57
57
const s = makeStorage ( 'gs://test-bucket/this/ismyobject?hello' ) ;
58
58
assert . equal ( s . toString ( ) , 'gs://test-bucket/this/ismyobject?hello' ) ;
59
59
} ) ;
60
- it ( ' doesn\ 't URL-decode on a gs:// string' , ( ) => {
60
+ it ( " doesn't URL-decode on a gs:// string" , ( ) => {
61
61
const s = makeStorage ( 'gs://test-bucket/%3F' ) ;
62
62
assert . equal ( s . toString ( ) , 'gs://test-bucket/%3F' ) ;
63
63
} ) ;
64
64
it ( 'ignores URL params and fragments on an http URL' , ( ) => {
65
65
const s = makeStorage (
66
66
`http://${ DEFAULT_HOST } /v0/b/test-bucket/o/my/object.txt` +
67
- '?ignoreme#please'
67
+ '?ignoreme#please'
68
68
) ;
69
69
assert . equal ( s . toString ( ) , 'gs://test-bucket/my/object.txt' ) ;
70
70
} ) ;
@@ -78,7 +78,7 @@ describe('Firebase Storage > Reference', () => {
78
78
it ( 'ignores URL params and fragments on an https URL' , ( ) => {
79
79
const s = makeStorage (
80
80
`https://${ DEFAULT_HOST } /v0/b/test-bucket/o/my/object.txt` +
81
- '?ignoreme#please'
81
+ '?ignoreme#please'
82
82
) ;
83
83
assert . equal ( s . toString ( ) , 'gs://test-bucket/my/object.txt' ) ;
84
84
} ) ;
@@ -92,7 +92,7 @@ describe('Firebase Storage > Reference', () => {
92
92
} ) ;
93
93
94
94
describe ( 'toString' , ( ) => {
95
- it ( ' Doesn\ 't add trailing slash' , ( ) => {
95
+ it ( " Doesn't add trailing slash" , ( ) => {
96
96
const s = makeStorage ( 'gs://test-bucket/foo' ) ;
97
97
assert . equal ( s . toString ( ) , 'gs://test-bucket/foo' ) ;
98
98
} ) ;
@@ -177,7 +177,7 @@ describe('Firebase Storage > Reference', () => {
177
177
} ) ;
178
178
} ) ;
179
179
180
- it ( ' Doesn\ 't send Authorization on null auth token' , done => {
180
+ it ( " Doesn't send Authorization on null auth token" , done => {
181
181
function newSend (
182
182
xhrio : TestingXhrIo ,
183
183
url : string ,
@@ -302,7 +302,7 @@ describe('Firebase Storage > Reference', () => {
302
302
'storage/invalid-argument'
303
303
) ;
304
304
} ) ;
305
- it ( ' doesn\ 't throw on good metadata' , ( ) => {
305
+ it ( " doesn't throw on good metadata" , ( ) => {
306
306
const goodMetadata = {
307
307
md5Hash : 'a' ,
308
308
cacheControl : 'done' ,
@@ -489,14 +489,14 @@ describe('Firebase Storage > Reference', () => {
489
489
} ) ;
490
490
491
491
describe ( 'non-root operations' , ( ) => {
492
- it ( ' put doesn\ 't throw' , ( ) => {
492
+ it ( " put doesn't throw" , ( ) => {
493
493
assert . doesNotThrow ( ( ) => {
494
494
child . put ( new Blob ( [ 'a' ] ) ) ;
495
495
child . put ( new Uint8Array ( 10 ) ) ;
496
496
child . put ( new ArrayBuffer ( 10 ) ) ;
497
497
} ) ;
498
498
} ) ;
499
- it ( ' putString doesn\ 't throw' , ( ) => {
499
+ it ( " putString doesn't throw" , ( ) => {
500
500
assert . doesNotThrow ( ( ) => {
501
501
child . putString ( 'raw' , StringFormat . RAW ) ;
502
502
child . putString ( 'aaaa' , StringFormat . BASE64 ) ;
@@ -507,22 +507,22 @@ describe('Firebase Storage > Reference', () => {
507
507
) ;
508
508
} ) ;
509
509
} ) ;
510
- it ( ' delete doesn\ 't throw' , ( ) => {
510
+ it ( " delete doesn't throw" , ( ) => {
511
511
assert . doesNotThrow ( ( ) => {
512
512
child . delete ( ) ;
513
513
} ) ;
514
514
} ) ;
515
- it ( ' getMetadata doesn\ 't throw' , ( ) => {
515
+ it ( " getMetadata doesn't throw" , ( ) => {
516
516
assert . doesNotThrow ( ( ) => {
517
517
child . getMetadata ( ) ;
518
518
} ) ;
519
519
} ) ;
520
- it ( ' listAll doesn\ 't throw' , ( ) => {
520
+ it ( " listAll doesn't throw" , ( ) => {
521
521
assert . doesNotThrow ( ( ) => {
522
522
child . listAll ( ) ;
523
523
} ) ;
524
524
} ) ;
525
- it ( ' list doesn\ 't throw' , ( ) => {
525
+ it ( " list doesn't throw" , ( ) => {
526
526
assert . doesNotThrow ( ( ) => {
527
527
child . list ( ) ;
528
528
} ) ;
@@ -539,12 +539,12 @@ describe('Firebase Storage > Reference', () => {
539
539
child . list ( { maxResults : 4 , pageToken : null } ) ;
540
540
} ) ;
541
541
} ) ;
542
- it ( ' updateMetadata doesn\ 't throw' , ( ) => {
542
+ it ( " updateMetadata doesn't throw" , ( ) => {
543
543
assert . doesNotThrow ( ( ) => {
544
544
child . updateMetadata ( { } as Metadata ) ;
545
545
} ) ;
546
546
} ) ;
547
- it ( ' getDownloadURL doesn\ 't throw' , ( ) => {
547
+ it ( " getDownloadURL doesn't throw" , ( ) => {
548
548
assert . doesNotThrow ( ( ) => {
549
549
child . getDownloadURL ( ) ;
550
550
} ) ;
@@ -576,12 +576,12 @@ describe('Firebase Storage > Reference', () => {
576
576
'storage/invalid-root-operation'
577
577
) ;
578
578
} ) ;
579
- it ( ' listAll doesn\ 't throws' , ( ) => {
579
+ it ( " listAll doesn't throws" , ( ) => {
580
580
assert . doesNotThrow ( ( ) => {
581
581
root . listAll ( ) ;
582
582
} ) ;
583
583
} ) ;
584
- it ( ' list doesn\ 't throws' , ( ) => {
584
+ it ( " list doesn't throws" , ( ) => {
585
585
assert . doesNotThrow ( ( ) => {
586
586
root . list ( ) ;
587
587
} ) ;
0 commit comments