@@ -306,6 +306,16 @@ describe('Object Comparison Tests', () => {
306
306
actual : { dataView : new Uint8Array ( 3 ) } ,
307
307
expected : { dataView : new DataView ( new ArrayBuffer ( 3 ) ) } ,
308
308
} ,
309
+ {
310
+ description : 'throws when comparing Float32Array([+0.0]) with Float32Array([-0.0])' ,
311
+ actual : new Float32Array ( [ + 0.0 ] ) ,
312
+ expected : new Float32Array ( [ - 0.0 ] ) ,
313
+ } ,
314
+ {
315
+ description : 'throws when comparing two different urls' ,
316
+ actual : new URL ( 'http://foo' ) ,
317
+ expected : new URL ( 'http://bar' ) ,
318
+ } ,
309
319
{
310
320
description : 'throws when comparing SharedArrayBuffers when expected has different elements actual' ,
311
321
actual : ( ( ) => {
@@ -778,6 +788,21 @@ describe('Object Comparison Tests', () => {
778
788
actual : [ 1 , 2 , 3 ] ,
779
789
expected : [ 2 ] ,
780
790
} ,
791
+ {
792
+ description : 'ensures that File extends Blob' ,
793
+ actual : Object . getPrototypeOf ( File . prototype ) ,
794
+ expected : Blob . prototype
795
+ } ,
796
+ {
797
+ description : 'compares NaN with NaN' ,
798
+ actual : NaN ,
799
+ expected : NaN ,
800
+ } ,
801
+ {
802
+ description : 'compares two identical urls' ,
803
+ actual : new URL ( 'http://foo' ) ,
804
+ expected : new URL ( 'http://foo' ) ,
805
+ } ,
781
806
] . forEach ( ( { description, actual, expected } ) => {
782
807
it ( description , ( ) => {
783
808
assert . partialDeepStrictEqual ( actual , expected ) ;
0 commit comments