Skip to content

Instantly share code, notes, and snippets.

View MBehtemam's full-sized avatar
🦄
Full Of Energey

Mohammad Bagher Ehtemam MBehtemam

🦄
Full Of Energey
View GitHub Profile
@MBehtemam
MBehtemam / post-test-2.js
Last active November 22, 2018 17:15
post test without request body
it("it shoud return status code 400 if we dosent send anything", function(done){
supertest(app)
.post("/")
.send({})
.expect(400)
.end(function(err, res){
if (err) done(err);
done();
});
});
@MBehtemam
MBehtemam / post-test.js
Last active November 22, 2018 17:17
post test
describe("POST /", function(){
it("it shoud return status code 200 is name exists", function(done) {
supertest(app)
.post("/")
.send({ name: "Hope" })
.expect(200)
.end(function(err, res){
if (err) done(err);
done();
});
@MBehtemam
MBehtemam / post-method.js
Created November 21, 2018 22:07
post method
app.post("/", (req, res) => {
const { name } = req.body;
if (!name || name === undefined) {
res.statusCode(400);
}
res.json({ input: name });
});
@MBehtemam
MBehtemam / second-test.js
Last active November 22, 2018 17:16
second test
it("it shoud has response with hope key with value of loop", function(done){
supertest(app)
.get("/")
.expect({ hope: "loop" })
.end(function(err, res){
if (err) done(err);
done();
});
});
@MBehtemam
MBehtemam / index.spec.js
Last active November 22, 2018 17:14
First Test
const supertest = require("supertest");
const assert = require('assert');
const app = require("../index");
describe("GET /", function() {
it("it should has status code 200", function(done) {
supertest(app)
.get("/")
.expect(200)
.end(function(err, res){
@MBehtemam
MBehtemam / index.spec.js
Last active November 21, 2018 21:52
first part of test , importing package
const supertest = require("supertest");
const assert = require('assert');
const app = require("../index");
@MBehtemam
MBehtemam / index.js
Last active November 21, 2018 22:36
Sample server
const express = require("express");
const bodyParser = require("body-parser");
const app = express();
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.get("/", (req, res) => {
res.json({ hope: "loop" });
});
@MBehtemam
MBehtemam / README-Template.md
Created November 13, 2018 11:15 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@MBehtemam
MBehtemam / vs_code_behind_proxy
Created January 3, 2018 08:43 — forked from aws-scripting-guy/vs_code_behind_proxy
Visual Studio Code - working with git behind proxy
git config --global http.proxy http://myproxyserver:8080
@MBehtemam
MBehtemam / gist:bbb3f845c42d38908cc275321aec1658
Created December 25, 2017 18:53
Shorten prompt for Bash on ubuntu on windows
//first
cd ~
//then
vim .bash_profile
//and after that put this line and save and opne/close bash on ubuntu on windows