From 9e7c2a6fe493143ff195acfe55ec9809570052e2 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Sat, 11 Apr 2015 20:15:31 +0800 Subject: [PATCH] spec: Suppress crash-reporter test on 64bit Windows --- spec/api-crash-reporter-spec.coffee | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spec/api-crash-reporter-spec.coffee b/spec/api-crash-reporter-spec.coffee index c9aa025..3d78c3a 100644 --- a/spec/api-crash-reporter-spec.coffee +++ b/spec/api-crash-reporter-spec.coffee @@ -17,6 +17,9 @@ describe 'crash-reporter module', -> beforeEach -> w = new BrowserWindow(show: false) afterEach -> w.destroy() + # It is not working on 64bit Windows. + return if process.platform is 'win32' and process.arch is 'x64 + it 'should send minidump when renderer crashes', (done) -> @timeout 60000 server = http.createServer (req, res) -> -- 2.7.4