test: Ensure pages are utf-8 HTML
Alan Pearce alan@alanpearce.eu
Sat, 01 Jul 2017 13:53:50 +0200
1 files changed, 3 insertions(+), 0 deletions(-)
jump to
M test/app.test.js → test/app.test.js
@@ -26,6 +26,7 @@ test("homepage", t => { return request(app.listen()) .get("/") .expect(200) + .expect("Content-Type", "text/html; charset=utf-8") .expect(/^<!DOCTYPE html>/) .then(parseResponse) .then($ => { @@ -68,6 +69,7 @@ test("post", t => { return request(app.listen()) .get("/post/testfile") .expect(200) + .expect("Content-Type", "text/html; charset=utf-8") .expect(/^<!DOCTYPE html>/) .then(parseResponse) .then($ => { @@ -103,6 +105,7 @@ test("tags", t => { return request(app.listen()) .get("/tag/a") .expect(200) + .expect("Content-Type", "text/html; charset=utf-8") .expect(/^<!DOCTYPE html>/) .then(parseResponse) .then($ => {