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
2018-01-07 07:59:36 +00:00

15 lines
236 B
JavaScript

'use strict';
const assert = require('assert');
module.exports = function(server) {
test('who am I?', () => {
return server.whoami().then(function (username) {
assert.equal(username, 'test');
});
});
};