0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-02-17 23:45:29 -05:00

Tests should check for presence of title with "Verdaccio" not "Sinopia"

This commit is contained in:
trent.earl 2016-08-20 12:07:52 -05:00
parent 1efd94dfe6
commit b31198f685

View file

@ -39,7 +39,7 @@ describe('toplevel', function() {
url: 'http://localhost:' + port + '/',
}, function(err, res, body) {
assert.equal(err, null)
assert(body.match(/<title>Sinopia<\/title>/))
assert(body.match(/<title>Verdaccio<\/title>/))
done()
})
})