Demo for query storing
Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/tiny-lr/test/http.js b/node_modules/tiny-lr/test/http.js
new file mode 100644
index 0000000..cc9d83f
--- /dev/null
+++ b/node_modules/tiny-lr/test/http.js
@@ -0,0 +1,14 @@
+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);
+ });
+ });
+});