mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 07:48:38 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
24
devtools/shared/tests/unit/test_flatten.js
Normal file
24
devtools/shared/tests/unit/test_flatten.js
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
/* -*- js-indent-level: 2; indent-tabs-mode: nil -*- */
|
||||
/* Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
// Test ThreadSafeDevToolsUtils.flatten
|
||||
|
||||
function run_test() {
|
||||
const { flatten } = DevToolsUtils;
|
||||
|
||||
const flat = flatten([["a", "b", "c"],
|
||||
["d", "e", "f"],
|
||||
["g", "h", "i"]]);
|
||||
|
||||
equal(flat.length, 9);
|
||||
equal(flat[0], "a");
|
||||
equal(flat[1], "b");
|
||||
equal(flat[2], "c");
|
||||
equal(flat[3], "d");
|
||||
equal(flat[4], "e");
|
||||
equal(flat[5], "f");
|
||||
equal(flat[6], "g");
|
||||
equal(flat[7], "h");
|
||||
equal(flat[8], "i");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue