Skip to content

Commit db7341f

Browse files
hanselfmu-chromiumDevtools-frontend LUCI CQ
authored andcommitted
Turn on a skipped test in memory_test
Fixed: 347709947 Change-Id: I56ceb64211df01c386f39ba6f5040805b320607b Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6594054 Auto-Submit: Changhao Han <changhaohan@chromium.org> Reviewed-by: Alex Rudenko <alexrudenko@chromium.org> Commit-Queue: Changhao Han <changhaohan@chromium.org>
1 parent 9d691c3 commit db7341f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/e2e/memory/memory_test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,12 @@ describe('The Memory Panel', function() {
6969
await navigateToMemoryTab();
7070
});
7171

72-
// This test logs assertions to the console.
73-
it.skip('[crbug.com/347709947] Can take several heap snapshots ', async () => {
72+
it('Can take several heap snapshots ', async () => {
7473
await goToResource('memory/default.html');
7574
await navigateToMemoryTab();
7675
await takeHeapSnapshot();
7776
await waitForNonEmptyHeapSnapshotData();
78-
await takeHeapSnapshot();
77+
await takeHeapSnapshot('Snapshot 2');
7978
await waitForNonEmptyHeapSnapshotData();
8079
const heapSnapShots = await $$('.heap-snapshot-sidebar-tree-item');
8180
assert.lengthOf(heapSnapShots, 2);

0 commit comments

Comments
 (0)