0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-30 22:34:10 -05:00
verdaccio/test/functional/basic/whoIam.js

13 lines
249 B
JavaScript
Raw Normal View History

2018-06-24 03:11:52 -05:00
import {CREDENTIALS} from "../config.functional";
module.exports = function(server) {
2017-12-02 05:19:08 -05:00
test('who am I?', () => {
return server.whoami().then(function (username) {
expect(username).toMatch(CREDENTIALS.user);
});
});
};