Skip to content
Merged
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
50 changes: 50 additions & 0 deletions test/parallel/test-perf-hooks-resourcetiming.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

const common = require('../common');
const assert = require('assert');
const util = require('util');
const {
PerformanceObserver,
PerformanceEntry,
Expand All @@ -14,6 +15,7 @@ const {

assert(PerformanceObserver);
assert(PerformanceEntry);
assert.throws(() => new PerformanceEntry(), { code: 'ERR_ILLEGAL_CONSTRUCTOR' });
assert(PerformanceResourceTiming);
assert(clearResourceTimings);
assert(markResourceTiming);
Expand Down Expand Up @@ -173,6 +175,54 @@ function createTimingInfo({
encodedBodySize: 0,
decodedBodySize: 0,
});
assert.strictEqual(util.inspect(performance.getEntries()), `[
PerformanceResourceTiming {
name: 'http://localhost:8080',
entryType: 'resource',
startTime: 0,
duration: 0,
initiatorType: 'fetch',
nextHopProtocol: [],
workerStart: 0,
redirectStart: 0,
redirectEnd: 0,
fetchStart: 0,
domainLookupStart: 0,
domainLookupEnd: 0,
connectStart: 0,
connectEnd: 0,
secureConnectionStart: 0,
requestStart: 0,
responseStart: 0,
responseEnd: 0,
transferSize: 0,
encodedBodySize: 0,
decodedBodySize: 0
}
]`);
assert.strictEqual(util.inspect(resource), `PerformanceResourceTiming {
name: 'http://localhost:8080',
entryType: 'resource',
startTime: 0,
duration: 0,
initiatorType: 'fetch',
nextHopProtocol: [],
workerStart: 0,
redirectStart: 0,
redirectEnd: 0,
fetchStart: 0,
domainLookupStart: 0,
domainLookupEnd: 0,
connectStart: 0,
connectEnd: 0,
secureConnectionStart: 0,
requestStart: 0,
responseStart: 0,
responseEnd: 0,
transferSize: 0,
encodedBodySize: 0,
decodedBodySize: 0
}`);

assert(resource instanceof PerformanceEntry);
assert(resource instanceof PerformanceResourceTiming);
Expand Down