From 8358ef8a2bdf817c8ed515be7bc9cec0a9b5f486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Ma=C5=82ecki?= Date: Sun, 18 Dec 2011 22:54:08 +0100 Subject: [PATCH] [test dist] Run core tests on `npm test` --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d5d61c6..0a6b9dc 100644 --- a/package.json +++ b/package.json @@ -28,9 +28,10 @@ "main": "./lib/node-http-proxy", "bin": { "node-http-proxy": "./bin/node-http-proxy" }, "scripts": { - "test": "npm run-script test-http && npm run-script test-https", + "test": "npm run-script test-http && npm run-script test-https && npm run-script test-core", "test-http": "vows --spec && vows --spec --target=secure", - "test-https": "vows --spec --source=secure && vows --spec --source=secure --target=secure" + "test-https": "vows --spec --source=secure && vows --spec --source=secure --target=secure", + "test-core": "test/core/run" }, "engines": { "node": "0.4.x || 0.5.x" } }