We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcc8c50 commit f45fd34Copy full SHA for f45fd34
webdriver-ts/src/timeline.ts
@@ -282,7 +282,7 @@ interface Timingresult {
282
timingResult: Timingresult
283
}
284
function isContained(testIv: Interval, otherIv: Interval) {
285
- return intervals.some(() => testIv.start>=otherIv.start && testIv.end<=otherIv.end);
+ return testIv.start>=otherIv.start && testIv.end<=otherIv.end;
286
287
function newContainedInterval(outer: Timingresult, intervals: Array<Interval>) {
288
let outerIv = {start: outer.ts, end: outer.end, timingResult: outer};
0 commit comments