You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
375 B

var common = require("../common-tap.js")
var test = require("tap").test
test("cache add", function (t) {
common.npm(["cache", "add", "superfoo"], {}, function (er, c, so, se) {
if (er) throw er
t.ok(c, "got non-zero exit code")
t.equal(so, "", "nothing printed to stdout")
t.similar(se, /404 Not Found: superfoo/, "got expected error")
t.end()
})
})