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

14 lines
274 B
JavaScript
Raw Normal View History

2017-04-19 14:15:28 -05:00
'use strict';
2016-08-10 05:14:08 -05:00
module.exports = function() {
2017-04-19 14:15:28 -05:00
let server = process.server;
2016-08-10 05:14:08 -05:00
describe('logout', function() {
2017-04-19 14:15:28 -05:00
it('should log out', function() {
2016-08-10 05:14:08 -05:00
return server.logout('some-token')
.status(200)
2017-04-19 14:15:28 -05:00
.body_ok(/Logged out/);
});
});
};