diff --git a/express/express-tests.ts b/express/express-tests.ts
index ed9265b66a..439ef95012 100644
--- a/express/express-tests.ts
+++ b/express/express-tests.ts
@@ -1,4 +1,5 @@
///
+///
import * as express from 'express';
var app = express();
@@ -91,3 +92,10 @@ app.listen(3000);
const next: express.NextFunction = () => {};
const nextWithArgument: express.NextFunction = (err: any) => {};
+
+/**
+ * The express.Application is compatible with http.createServer
+ */
+
+import * as http from 'http';
+http.createServer(app);