mirror of
https://github.com/atom/atom.git
synced 2026-01-22 21:38:10 -05:00
Default to empty arrays for user and bundled package paths
This commit is contained in:
@@ -30,9 +30,9 @@ measure 'spec suite require time', ->
|
||||
'user'
|
||||
|
||||
# Run bundled package specs
|
||||
requireSpecs(packagePath) for packagePath in packagePaths.bundled
|
||||
requireSpecs(packagePath) for packagePath in packagePaths.bundled ? []
|
||||
setSpecType('bundled')
|
||||
|
||||
# Run user package specs
|
||||
requireSpecs(packagePath) for packagePath in packagePaths.user
|
||||
requireSpecs(packagePath) for packagePath in packagePaths.user ? []
|
||||
setSpecType('user')
|
||||
|
||||
Reference in New Issue
Block a user