From e746d69aa28deaff1da9bbf8498b39f008b290ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominykas=20Blyz=CC=8Ce=CC=87?= Date: Thu, 7 Jan 2016 00:12:00 +0200 Subject: [PATCH] skip integration tests on win - phantom crashes way too much --- appveyor.yml | 1 + run-integration-tests.js | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index ced95a8..0d71fb4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,5 @@ environment: + NO_INTEGRATION: 1 matrix: - nodejs_version: "0.10" jsdom_version: "3" diff --git a/run-integration-tests.js b/run-integration-tests.js index 70c93f1..9880a10 100644 --- a/run-integration-tests.js +++ b/run-integration-tests.js @@ -1,3 +1,7 @@ +if (process.env["NO_INTEGRATION"]) { + process.exit(0); +} + var when = require('when'); var path = require('path'); var fs = require('fs');