1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/functional/basic/whoIam.js

11 lines
188 B
JavaScript
Raw Normal View History

module.exports = function(server) {
2017-12-02 11:19:08 +01:00
test('who am I?', () => {
return server.whoami().then(function (username) {
expect(username).toMatch('test');
});
});
};