1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-08 23:25:51 +01:00
verdaccio/test/functional/basic/whoIam.js
2018-06-24 10:11:52 +02:00

13 lines
249 B
JavaScript

import {CREDENTIALS} from "../config.functional";
module.exports = function(server) {
test('who am I?', () => {
return server.whoami().then(function (username) {
expect(username).toMatch(CREDENTIALS.user);
});
});
};