From 741b30cc26ef8de0729e717d8f6e35d71163256d Mon Sep 17 00:00:00 2001 From: Hans Larsen Date: Wed, 12 Jul 2017 16:34:48 -0700 Subject: [PATCH] ci: fix poll test on circleci --- tests/e2e/tests/build/poll.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/e2e/tests/build/poll.ts b/tests/e2e/tests/build/poll.ts index a6a9c0aee56d..8887e7f41807 100644 --- a/tests/e2e/tests/build/poll.ts +++ b/tests/e2e/tests/build/poll.ts @@ -9,16 +9,6 @@ import {expectToFail, wait} from '../../utils/utils'; const webpackGoodRegEx = /webpack: Compiled successfully./; export default function() { - - // @filipesilva: This test doesn't work correctly on CircleCI while being ran by the test script. - // Polling time seems to be ignored and several builds are fired per second. - // Debugging showed that webpack things the `src/` directory changed on each rebuild. - // Disabling for now. - if (process.env['CIRCLECI']) { - return; - } - - return silentExecAndWaitForOutputToMatch('ng', ['serve', '--poll=10000'], webpackGoodRegEx) // Wait before editing a file. // Editing too soon seems to trigger a rebuild and throw polling out of whack.