Skip to content

Instantly share code, notes, and snippets.

View Tinh96nb's full-sized avatar
🎯
Focusing

Pham Tinh Tinh96nb

🎯
Focusing
View GitHub Profile

Keybase proof

I hereby claim:

  • I am tinh96nb on github.
  • I am phamtinh (https://keybase.io/phamtinh) on keybase.
  • I have a public key ASDeGBM0zyfgCW0py-k3vdCglel6DiFMoc58i_mSod8r1Qo

To claim this, I am signing this object:

@Tinh96nb
Tinh96nb / test.js
Created January 29, 2018 10:16 — forked from yamalight/test.js
Koa and supertest example
const test = require('tape');
const koa = require('koa');
const supertest = require('supertest');
const app = koa();
app.use(function *(){
this.body = 'Hello World';
});