summaryrefslogtreecommitdiffstats
path: root/devtools/shared/heapsnapshot/tests/unit/test_census-tree-node-03.js
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-22 17:32:39 -0500
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 12:50:57 +0200
commit36fc5f674ef1a02d1498484c563a7108f4de44ed (patch)
tree120483cd8fc0decd189d5118941a9b23d6156ad5 /devtools/shared/heapsnapshot/tests/unit/test_census-tree-node-03.js
parent7b30664f59e65cadb7d5eb2e42591e90a32871f8 (diff)
downloadUXP-36fc5f674ef1a02d1498484c563a7108f4de44ed.tar
UXP-36fc5f674ef1a02d1498484c563a7108f4de44ed.tar.gz
UXP-36fc5f674ef1a02d1498484c563a7108f4de44ed.tar.lz
UXP-36fc5f674ef1a02d1498484c563a7108f4de44ed.tar.xz
UXP-36fc5f674ef1a02d1498484c563a7108f4de44ed.zip
Reclassify heapsnapshot and nsJSInspector as not part of devtools
This resolves Issue #316
Diffstat (limited to 'devtools/shared/heapsnapshot/tests/unit/test_census-tree-node-03.js')
-rw-r--r--devtools/shared/heapsnapshot/tests/unit/test_census-tree-node-03.js96
1 files changed, 0 insertions, 96 deletions
diff --git a/devtools/shared/heapsnapshot/tests/unit/test_census-tree-node-03.js b/devtools/shared/heapsnapshot/tests/unit/test_census-tree-node-03.js
deleted file mode 100644
index bdf932099..000000000
--- a/devtools/shared/heapsnapshot/tests/unit/test_census-tree-node-03.js
+++ /dev/null
@@ -1,96 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ */
-
-/**
- * Tests CensusTreeNode with `objectClass` breakdown.
- */
-
-const countBreakdown = { by: "count", count: true, bytes: true };
-
-const BREAKDOWN = {
- by: "objectClass",
- then: countBreakdown,
- other: { by: "internalType", then: countBreakdown }
-};
-
-const REPORT = {
- "Function": { bytes: 10, count: 10 },
- "Array": { bytes: 100, count: 1 },
- "other": {
- "JIT::CODE::NOW!!!": { bytes: 20, count: 2 },
- "JIT::CODE::LATER!!!": { bytes: 40, count: 4 }
- }
-};
-
-const EXPECTED = {
- name: null,
- count: 0,
- totalCount: 17,
- bytes: 0,
- totalBytes: 170,
- children: [
- {
- name: "Array",
- bytes: 100,
- totalBytes: 100,
- count: 1,
- totalCount: 1,
- children: undefined,
- id: 3,
- parent: 1,
- reportLeafIndex: 2,
- },
- {
- name: "other",
- count: 0,
- totalCount: 6,
- bytes: 0,
- totalBytes: 60,
- children: [
- {
- name: "JIT::CODE::LATER!!!",
- bytes: 40,
- totalBytes: 40,
- count: 4,
- totalCount: 4,
- children: undefined,
- id: 6,
- parent: 4,
- reportLeafIndex: 5,
- },
- {
- name: "JIT::CODE::NOW!!!",
- bytes: 20,
- totalBytes: 20,
- count: 2,
- totalCount: 2,
- children: undefined,
- id: 5,
- parent: 4,
- reportLeafIndex: 4,
- },
- ],
- id: 4,
- parent: 1,
- reportLeafIndex: undefined,
- },
- {
- name: "Function",
- bytes: 10,
- totalBytes: 10,
- count: 10,
- totalCount: 10,
- children: undefined,
- id: 2,
- parent: 1,
- reportLeafIndex: 1,
- },
- ],
- id: 1,
- parent: undefined,
- reportLeafIndex: undefined,
-};
-
-function run_test() {
- compareCensusViewData(BREAKDOWN, REPORT, EXPECTED);
-}