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

13 lines
288 B
JavaScript
Raw Normal View History

import { HTTP_STATUS } from '../../../src/lib/constants';
2017-04-19 14:15:28 -05:00
export default function (server) {
2017-12-02 05:19:08 -05:00
describe('logout', () => {
test('should log out', () => {
return server
.logout('some-token')
.status(HTTP_STATUS.OK)
.body_ok(/Logged out/);
2017-04-19 14:15:28 -05:00
});
});
2017-12-02 05:19:08 -05:00
}