Skip to content
Snippets Groups Projects
Commit da6c9b96 authored by André Bargull's avatar André Bargull
Browse files

Remove invalid Array.from test

parent 91e1a0b7
No related branches found
No related tags found
No related merge requests found
// Copyright 2015 Microsoft Corporation. All rights reserved.
// This code is governed by the license found in the LICENSE file.
/*---
description: Passing array Buffer
es6id: 22.1.2.1
---*/
var arrayBuffer = new ArrayBuffer([ 1, 2, 4, 8, 16, 32, 64, 128 ]);
var a = Array.from(arrayBuffer);
for (var j = 0; j < a.length; j++) {
assert.sameValue(a[j], arrayBuffer[j], "Elements mismatch at " + j + ".");
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment