Skip to content

Commit

Permalink
correct tests after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
valotvince committed Jul 3, 2019
1 parent e1cebda commit f979d10
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/text/ttml_text_parser_unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -848,6 +848,11 @@ describe('TtmlTextParser', () => {
if (cue.region) {
cue.region = jasmine.objectContaining(cue.region);
}

if (cue.nestedCues) {
cue.nestedCues = cue.nestedCues.map(nestedCue => jasmine.objectContaining(nestedCue));
}

return jasmine.objectContaining(cue);
});
expect(result).toEqual(expected);
Expand Down

0 comments on commit f979d10

Please sign in to comment.