Skip to content

Commit

Permalink
fix: re-enable fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k committed Oct 4, 2018
1 parent d3235e5 commit 1d2cddd
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions website/app_test.js
Expand Up @@ -111,7 +111,6 @@ test(function createExecTimeColumnsRegularData() {
]);
});

/* Test is incorrect. TODO: fix this test.
test(function createExecTimeColumnsIrregularData() {
const columns = createExecTimeColumns(irregularData);
assertEqual(columns, [
Expand All @@ -121,7 +120,6 @@ test(function createExecTimeColumnsIrregularData() {
["cold_relative_import", null, null]
]);
});
*/

test(function createBinarySizeColumnsRegularData() {
const columns = createBinarySizeColumns(regularData);
Expand All @@ -133,7 +131,6 @@ test(function createBinarySizeColumnsRegularData() {
]);
});

/* Test is incorrect. TODO: fix this test.
test(function createBinarySizeColumnsIrregularData() {
const columns = createBinarySizeColumns(irregularData);
assertEqual(columns, [
Expand All @@ -143,36 +140,29 @@ test(function createBinarySizeColumnsIrregularData() {
["snapshot_deno.bin", null, 0]
]);
});
*/

test(function createThreadCountColumnsRegularData() {
const columns = createThreadCountColumns(regularData);
assertEqual(columns, [["set_timeout", 4, 5], ["fetch_deps", 6, 7]]);
});

/* Test is incorrect. TODO: fix this test.
test(function createThreadCountColumnsIrregularData() {
const columns = createThreadCountColumns(irregularData);
assertEqual(columns, [
["set_timeout", null, null],
["fetch_deps", null, null]
]);
});
*/

/* Test is incorrect. TODO: fix this test.
test(function createSyscallCountColumnsRegularData() {
const columns = createSyscallCountColumns(regularData);
assertEqual(columns, [["hello", 600, 700], ["fetch_deps", 700, 800]]);
});
*/

/* Test is incorrect. TODO: fix this test.
test(function createSyscallCountColumnsIrregularData() {
const columns = createSyscallCountColumns(irregularData);
assertEqual(columns, [["hello", null, null], ["fetch_deps", null, null]]);
});
*/

test(function createSha1ListRegularData() {
const sha1List = createSha1List(regularData);
Expand Down

0 comments on commit 1d2cddd

Please sign in to comment.