mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
|
import {CREDENTIALS} from "../config.functional";
|
||
|
|
||
|
export default function(server) {
|
||
|
|
||
|
test('who am I?', () => {
|
||
|
return server.whoami().then(function (username) {
|
||
|
expect(username).toMatch(CREDENTIALS.user);
|
||
|
});
|
||
|
});
|
||
|
}
|