test(grid-snapping): use bound matcher

This commit is contained in:
Nico Rehwaldt 2019-04-26 20:24:04 +02:00 committed by merge-me[bot]
parent 86506468ba
commit 02848564cf
1 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ describe('features/grid-snapping', function() {
);
// then
expect(getBounds(collapsedParticipant)).to.eql(bounds);
expect(collapsedParticipant).to.have.bounds(bounds);
}));
@ -230,7 +230,7 @@ describe('features/grid-snapping', function() {
);
// then
expect(getBounds(expandedParticipant)).to.eql(bounds);
expect(expandedParticipant).to.have.bounds(bounds);
}));