diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 2c9d0ccebbd9..000000000000 --- a/appveyor.yml +++ /dev/null @@ -1,31 +0,0 @@ -environment: - matrix: - - nodejs_version: '10' - -init: - # debugging Appveyor build. More info: - # https://www.appveyor.com/docs/how-to/rdp-to-build-worker/ - - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) - - git config --global core.symlinks true - -install: - - ps: Install-Product node $env:nodejs_version x64 - - node --version - - yarn - -cache: - - node_modules - - .eslintcache - - "%LOCALAPPDATA%\\Yarn" - -test_script: - - yarn jest --color - -# Don't actually build. -build: off - -notifications: - - provider: Email - on_build_success: false - on_build_failure: false - on_build_status_changed: false diff --git a/testSetupFile.js b/testSetupFile.js index afb302db2e0c..ed1dca948ca7 100644 --- a/testSetupFile.js +++ b/testSetupFile.js @@ -10,8 +10,3 @@ const jasmineReporters = require('jasmine-reporters'); // Some of the `jest-runtime` tests are very slow and cause // timeouts on travis jest.setTimeout(70000); - -if (global.jasmine && process.env.APPVEYOR_API_URL) { - // Running on AppVeyor, add the custom reporter. - jasmine.getEnv().addReporter(new jasmineReporters.AppVeyorReporter()); -}