Remove internal packages section from spec reporter

This commit is contained in:
Kevin Sawicki
2013-08-13 17:47:09 -07:00
parent 4777c4c42c
commit 41268c67d7
2 changed files with 0 additions and 15 deletions

View File

@@ -24,9 +24,6 @@ class AtomReporter extends View
@div outlet: 'coreArea', =>
@div outlet: 'coreHeader', class: 'symbolHeader'
@ul outlet: 'coreSummary', class: 'symbolSummary list-unstyled'
@div outlet: 'internalArea', =>
@div outlet: 'internalHeader', class: 'symbolHeader'
@ul outlet: 'internalSummary', class: 'symbolSummary list-unstyled'
@div outlet: 'bundledArea', =>
@div outlet: 'bundledHeader', class: 'symbolHeader'
@ul outlet: 'bundledSummary', class: 'symbolSummary list-unstyled'
@@ -130,7 +127,6 @@ class AtomReporter extends View
addSpecs: (specs) ->
coreSpecs = 0
internalPackageSpecs = 0
bundledPackageSpecs = 0
userPackageSpecs = 0
for spec in specs
@@ -139,9 +135,6 @@ class AtomReporter extends View
when 'core'
coreSpecs++
@coreSummary.append symbol
when 'internal'
internalPackageSpecs++
@internalSummary.append symbol
when 'bundled'
bundledPackageSpecs++
@bundledSummary.append symbol
@@ -153,10 +146,6 @@ class AtomReporter extends View
@coreHeader.text("Core Specs (#{coreSpecs}):")
else
@coreArea.hide()
if internalPackageSpecs > 0
@internalHeader.text("Internal Package Specs (#{internalPackageSpecs}):")
else
@internalArea.hide()
if bundledPackageSpecs > 0
@bundledHeader.text("Bundled Package Specs (#{bundledPackageSpecs}):")
else

View File

@@ -14,10 +14,6 @@ measure 'spec suite require time', ->
# Run core specs
requireSpecs(window.resourcePath, 'core')
# Run internal package specs
for packagePath in fsUtils.listTreeSync(config.bundledPackagesDirPath)
requireSpecs(packagePath, 'internal')
# Run bundled package specs
for packagePath in fsUtils.listTreeSync(config.nodeModulesDirPath) when atom.isInternalPackage(packagePath)
requireSpecs(packagePath, 'bundled')