mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
Use deepEqual for comparing type arrays
This commit is contained in:
@@ -159,7 +159,7 @@ describe('ipc module', function () {
|
||||
it('supports TypedArray', function () {
|
||||
const values = [1, 2, 3, 4]
|
||||
const typedArray = printName.typedArray(values)
|
||||
assert.equal(values.toString(), typedArray.toString())
|
||||
assert.deepEqual(values, typedArray)
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user