执行过npm install命令的vue-element-admin源码
康凯
2022-05-20 aa4c235a8ca67ea8b731f90c951a465e92c0a865
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
'use strict';
/*jshint asi: true */
 
var test = require('tap').test
var path = require('path')
var fs = require('fs')
var findParentDir = require('..')
 
test('finding .git root relative to the test dir', function (t) {
  findParentDir(__dirname, '.git', function (err, dir) {
    t.equals(dir, path.resolve(__dirname, '..') + '/')
    t.end()
  });  
})
 
test('finding this dir relative to the test dir', function (t) {
  findParentDir(__dirname, 'find-parent-dir.js', function (err, dir) {
    t.equals(dir, path.resolve(__dirname))
    t.end()
  });  
})
 
test('sync finding .git root relative to the test dir', function (t) {
  var dir = findParentDir.sync(__dirname, '.git')
  t.equals(dir, path.resolve(__dirname, '..') + '/')
  t.end()
})
 
test('sync finding this dir relative to the test dir', function (t) {
  var dir = findParentDir.sync(__dirname, 'find-parent-dir.js')
  t.equals(dir, path.resolve(__dirname))
  t.end()
})
 
test('find no dir when file is in the test dir', function(t) {
  var filepath = path.join(__dirname, 'shazam.txt')
  fs.writeFileSync(filepath, 'shaq attack')
  findParentDir('/etc', 'shazam.txt', function (err, dir) {
    fs.unlinkSync(filepath)
    t.equals(err, null)
    t.equals(dir, null)
    t.end()
  })
})