Skip to content

Instantly share code, notes, and snippets.

View imashukla's full-sized avatar
🎯
Focusing

Ajay Kumar Shukla imashukla

🎯
Focusing
View GitHub Profile
@imashukla
imashukla / login.test.js
Created March 14, 2018 13:52 — forked from joaoneto/login.test.js
Login session test with mocha
var request = require('supertest'),
should = require('should'),
app = require('../server');
var Cookies;
describe('Functional Test <Sessions>:', function () {
it('should create user session for valid user', function (done) {
request(app)
.post('/v1/sessions')