Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: fix flaky test-http2-pack-end-stream-flag
Signed-off-by: James M Snell <jasnell@gmail.com>
Fixes: #37639
  • Loading branch information
jasnell committed Mar 19, 2021
commit 6e9ccf6aebc8b90c9780665e91ad32b08987f736
15 changes: 9 additions & 6 deletions test/parallel/test-http2-pack-end-stream-flag.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,15 @@ server.on('stream', (stream, headers) => {
function testRequest(path, targetFrameCount, callback) {
const obs = new PerformanceObserver(
common.mustCallAtLeast((list, observer) => {
const entry = list.getEntries()[0];
if (entry.name !== 'Http2Session') return;
if (entry.detail.type !== 'client') return;
assert.strictEqual(entry.detail.framesReceived, targetFrameCount);
observer.disconnect();
callback();
const entries = list.getEntries();
for (let n = 0; n < entries.length; n++) {
const entry = entries[n];
if (entry.name !== 'Http2Session') continue;
if (entry.detail.type !== 'client') continue;
assert.strictEqual(entry.detail.framesReceived, targetFrameCount);
observer.disconnect();
callback();
}
}));
obs.observe({ type: 'http2' });
const client =
Expand Down