From 7a52fa6467cf95feab191bbc62efb1a36d816696 Mon Sep 17 00:00:00 2001 From: Konstantin Gredeskoul Date: Mon, 21 Mar 2016 04:09:25 -0700 Subject: [PATCH] Removing atom-build, and extra echo in tests --- .atom-build.json | 14 -------------- .gitignore | 1 + test/lib/helpers.bats | 1 - 3 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 .atom-build.json diff --git a/.atom-build.json b/.atom-build.json deleted file mode 100644 index dea01eda..00000000 --- a/.atom-build.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "cmd": "test/run", - "name": "Run All Tests", - "args": [ ], - "keymap": "ctrl-r", - "sh": true, - "errorMatch": [ - "rspec (?[\\/0-9a-zA-Z\\._]+):(?\\d+) #", - "# (?\\./.*):(?\\d+)", - "\\s+from (?\\./.*):(?\\d+)", - "`(require|load)': (?\\./.*):(?\\d+)", - "^(/.*):(?\\d+)" - ] -} diff --git a/.gitignore b/.gitignore index f12b3cf1..b748d384 100755 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.atom-build.json */enabled/* .DS_Store custom/* diff --git a/test/lib/helpers.bats b/test/lib/helpers.bats index f035e05e..f1e0f4b6 100644 --- a/test/lib/helpers.bats +++ b/test/lib/helpers.bats @@ -10,6 +10,5 @@ NO_COLOR=true @test "helpers search aliases" { run _bash-it-search-component 'plugins' 'base' - echo "the lines are: ${output[*]}" [[ "${lines[0]}" =~ 'plugins: base' ]] }