Welcome to mirror list, hosted at ThFree Co, Russian Federation.

outdated-depth-integer.js « disabled « test - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4cad5e69301b94f6ccf8bad8e17c43c29a8f0fac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
var common = require('../common-tap')
  , test = require('tap').test
  , rimraf = require('rimraf')
  , npm = require('../../')
  , mr = require('npm-registry-mock')
  , pkg = __dirname + '/outdated-depth'

function cleanup () {
  rimraf.sync(pkg + '/node_modules')
  rimraf.sync(pkg + '/cache')
}

test('outdated depth integer', function (t) {
  // todo: update with test-package-with-one-dep once the new
  // npm-registry-mock is published
  var expected = [
    pkg,
    'underscore',
    '1.3.1',
    '1.3.1',
    '1.5.1',
    '1.3.1'
  ]

  process.chdir(pkg)

  mr({port : common.port}, function (s) {
    npm.load({
      cache: pkg + '/cache'
    , loglevel: 'silent'
    , registry: common.registry
    , depth: 5
    }
    , function () {
        npm.install('request@0.9.0', function (er) {
          if (er) throw new Error(er)
          npm.outdated(function (err, d) {
            if (err) throw new Error(err)
            t.deepEqual(d[0], expected)
            s.close()
            t.end()
          })
        })
      }
    )
  })
})

test("cleanup", function (t) {
  cleanup()
  t.end()
})