linux: Enable tests on window size.
After upgraded to Chrome36, those tests have become stable.
This commit is contained in:
parent
d1a93a5135
commit
175d052a28
1 changed files with 0 additions and 9 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue