mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
linux: Enable tests on window size.
After upgraded to Chrome36, those tests have become stable.
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user