From b89ef80481cc33a40b7fac3c5e37473e07ce34fc Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Mon, 19 May 2014 02:00:59 +0000 Subject: [PATCH] Skip the webgl spec on Linux. WebGL just usually don't work on Linux in virtual machines. --- spec/chromium-spec.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/chromium-spec.coffee b/spec/chromium-spec.coffee index f7d56e7108..5e5d375956 100644 --- a/spec/chromium-spec.coffee +++ b/spec/chromium-spec.coffee @@ -68,5 +68,6 @@ describe 'chromium feature', -> describe 'webgl', -> it 'can be get as context in canvas', -> + return if process.platform is 'linux' webgl = document.createElement('canvas').getContext 'webgl' assert.notEqual webgl, null