From 945732057d1c98841f0ff6b7699a655589d7f7f6 Mon Sep 17 00:00:00 2001 From: Glavin Wiechert Date: Sat, 6 Jun 2015 16:56:01 -0300 Subject: [PATCH] Add missing package dependencies for atom-typescript package --- .travis.yml | 2 +- appveyor.yml | 2 +- spec/beautify-languages-spec.coffee | 4 +++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4ae2ba2..bc7dc7b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ notifications: script: sh build-package.sh env: - - APM_TEST_PACKAGES="atom-typescript language-marko language-tss language-html-swig" + - APM_TEST_PACKAGES="linter atom-typescript language-marko language-tss language-html-swig" cache: - pip diff --git a/appveyor.yml b/appveyor.yml index 195342f..d7518cd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -103,6 +103,6 @@ install: build_script: - cd %APPVEYOR_BUILD_FOLDER% # Install languages to Atom - - apm install atom-typescript language-marko language-tss language-html-swig + - apm install linter atom-typescript language-marko language-tss language-html-swig # Run tests on package - apm test --one --path %LOCALAPPDATA%/atom/bin/atom.cmd diff --git a/spec/beautify-languages-spec.coffee b/spec/beautify-languages-spec.coffee index 6f0f0b8..e52e8f9 100644 --- a/spec/beautify-languages-spec.coffee +++ b/spec/beautify-languages-spec.coffee @@ -25,12 +25,14 @@ describe "BeautifyLanguages", -> ] # All Atom packages that Atom Beautify is dependent on dependentPackages = [ + 'autocomplete-plus' + 'linter' 'atom-typescript' ] # Add language packages to dependentPackages for lang in allLanguages do (lang) -> - dependentPackages.push("language-#{lang}") + dependentPackages.push("language-#{lang}") beforeEach -> # Install all of the languages