UNPKG

tripledoc

Version:

Library to read, create and update documents on a Solid Pod

15 lines (13 loc) 328 B
import app from '../examples/express/app'; import request from 'supertest'; describe('mocha spec examples', () => { describe('tinylr', () => { it('GET /', done => { request(app) .get('/') .expect('Content-Type', /text\/html/) .expect(/Testing/) .expect(200, done); }); }); });