Assert bounds when restoring
authorKevin Sawicki <kevinsawicki@gmail.com>
Tue, 22 Nov 2016 21:20:01 +0000 (13:20 -0800)
committerKevin Sawicki <kevinsawicki@gmail.com>
Tue, 22 Nov 2016 21:22:30 +0000 (13:22 -0800)
spec/api-browser-window-spec.js

index 75e4dab..f18322b 100644 (file)
@@ -1764,10 +1764,11 @@ describe('browser-window module', function () {
       })
     })
 
-    it('should set the correct width when minWidth is used', function () {
+    it('should restore the correct bounds when minWidth is used', function () {
+      const initialSize = w.getSize()
       w.minimize()
       w.restore()
-      assert.equal(w.getSize()[0], 800)
+      assertBoundsEqual(w.getSize(), initialSize)
     })
   })
 
@@ -1781,7 +1782,7 @@ describe('browser-window module', function () {
       const initialPosition = w.getPosition()
       w.maximize()
       w.unmaximize()
-      assertBoundsEqual(initialPosition, w.getPosition())
+      assertBoundsEqual(w.getPosition(), initialPosition)
     })
   })
 })