You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test.equal(matchdep.filter('*').join(),'findup-sync,resolve,stack-trace,globule','should find all dependencies and devDependencies matching "*"');
44
+
test.equal(matchdep.filter('*').join(),'findup-sync,micromatch,resolve,stack-trace','should find all dependencies and devDependencies matching "*"');
45
45
test.done();
46
46
},
47
47
'path is relative to calling module, not cwd': function(test){
@@ -50,7 +50,7 @@ exports['matchdep'] = {
50
50
test.equal(submodule.defaultConfig().join(),'pkg-1,pkg-2,pkg-3','should find all deps in package.json next to submodule');
51
51
test.equal(submodule.fileConfig().join(),'pkg-1,pkg-2,pkg-3','should find all deps in package.json next to submodule');
52
52
test.equal(submodule.relativeConfig().join(),'pkg-1,pkg-2,pkg-3','should find all deps in package.json next to submodule');
53
-
test.equal(submodule.relativeConfig2().join(),'findup-sync,resolve,stack-trace,globule','should find all deps in ../../package.json from submodule');
53
+
test.equal(submodule.relativeConfig2().join(),'findup-sync,micromatch,resolve,stack-trace','should find all deps in ../../package.json from submodule');
54
54
test.equal(submodule.absoluteConfig().join(),'pkg-1,pkg-2,pkg-3','should find all deps in package.json next to submodule');
0 commit comments