switch to saucelabs

This commit is contained in:
Nathan Cahill
2018-11-04 18:04:44 -07:00
parent f1b8a1b7f2
commit 45aad74b01
3 changed files with 61 additions and 9 deletions

View File

@@ -154,17 +154,11 @@ describe('Split', function() {
split.collapse(0)
expect(this.a.getBoundingClientRect().width).toBeCloseTo(100, 0)
expect(this.b.getBoundingClientRect().width).toBeCloseTo(
800 - 100 - 10,
0,
)
expect(this.b.getBoundingClientRect().width).toBeCloseTo(800 - 100 - 10, 0)
split.collapse(1)
expect(this.a.getBoundingClientRect().width).toBeCloseTo(
800 - 100 - 10,
0,
)
expect(this.a.getBoundingClientRect().width).toBeCloseTo(800 - 100 - 10, 0)
expect(this.b.getBoundingClientRect().width).toBeCloseTo(100, 0)
})