linux: Enable tests on window size.

After upgraded to Chrome36, those tests have become stable.
This commit is contained in:
Cheng Zhao 2014-08-11 21:00:04 +08:00
parent d1a93a5135
commit 175d052a28

View file

@ -70,9 +70,6 @@ describe 'browser-window module', ->
describe 'BrowserWindow.setSize(width, height)', ->
it 'sets the window size', ->
# No way to reliably set size when window has not been shown on Linux.
return if process.platform is 'linux'
size = [400, 400]
w.setSize size[0], size[1]
after = w.getSize()
@ -80,9 +77,6 @@ describe 'browser-window module', ->
assert.equal after[1], size[1]
it 'can set the window larger than screen', ->
# No way to reliably set size when window has not been shown on Linux.
return if process.platform is 'linux'
size = require('screen').getPrimaryDisplay().size
size.width += 100
size.height += 100
@ -93,9 +87,6 @@ describe 'browser-window module', ->
describe 'BrowserWindow.setContentSize(width, height)', ->
it 'sets the content size', ->
# No way to reliably set size when window has not been shown on Linux.
return if process.platform is 'linux'
size = [400, 400]
w.setContentSize size[0], size[1]
after = w.getContentSize()