1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-17 07:45:52 +01:00
verdaccio/test/functional/basic/ping.ts
Juan Picado 93468211d6
chore: update eslint dependencies (#2126)
* chore: update eslint

* chore: update rules and style

* chore: aling formatting

* chore: update ci rules

* chore: aling formatting

* chore: aling formatting
2021-03-14 08:42:46 +01:00

11 lines
230 B
TypeScript

import _ from 'lodash';
export default function (server) {
test('ping', () => {
return server.ping().then(function (data) {
// it's always an empty object
expect(_.isObject(data)).toBeDefined();
});
});
}