fix(benchpress): fix benchpress overreporting in chrome45
closes #4011 Closes #4101
This commit is contained in:

committed by
Michael Goderbauer

parent
77e8304fc4
commit
0653b82048
@ -342,6 +342,17 @@ export function main() {
|
||||
});
|
||||
}));
|
||||
|
||||
it('should ignore FunctionCalls with empty scriptName',
|
||||
inject([AsyncTestCompleter], (async) => {
|
||||
createExtension(
|
||||
[chromeTimelineV8Events.start('FunctionCall', 0, {'data': {'scriptName': ''}})])
|
||||
.readPerfLog()
|
||||
.then((events) => {
|
||||
expect(events).toEqual([]);
|
||||
async.done();
|
||||
});
|
||||
}));
|
||||
|
||||
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user