From af9c453c520076303ab8aea3506201e4f13a0f38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedikt=20R=C3=B6tsch?= Date: Tue, 12 Dec 2017 14:38:09 +0100 Subject: [PATCH] test(e2e): run all specs, not only one specific --- test/run-e2e-test.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/run-e2e-test.js b/test/run-e2e-test.js index afe798a..c490ba1 100644 --- a/test/run-e2e-test.js +++ b/test/run-e2e-test.js @@ -17,11 +17,8 @@ const { CONTENTFUL_SPACE_ID, CONTENTFUL_DELIVERY_TOKEN, CONTENTFUL_PREVIEW_TOKEN server.on('error', console.error) server.listen(TEST_PORT, function () { const cypressBin = resolve(__dirname, 'e2e', 'node_modules', '.bin', 'cypress') - const spec = resolve(__dirname, 'e2e', 'specs', 'the-example-app-spec.js') execa(cypressBin, [ 'run', - '--spec', - spec, !process.env.CI ? '--headed' : null, '--env', `CONTENTFUL_SPACE_ID=${CONTENTFUL_SPACE_ID},CONTENTFUL_DELIVERY_TOKEN=${CONTENTFUL_DELIVERY_TOKEN},CONTENTFUL_PREVIEW_TOKEN=${CONTENTFUL_PREVIEW_TOKEN}`