mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
14 lines
274 B
JavaScript
14 lines
274 B
JavaScript
'use strict';
|
|
|
|
module.exports = function() {
|
|
let server = process.server;
|
|
|
|
describe('logout', function() {
|
|
it('should log out', function() {
|
|
return server.logout('some-token')
|
|
.status(200)
|
|
.body_ok(/Logged out/);
|
|
});
|
|
});
|
|
};
|