Add test cases for mark

This commit is contained in:
Shin'ya Ueoka 2018-10-15 23:46:45 +09:00
parent 9adf08bf95
commit 8d3b80af53
5 changed files with 86 additions and 4 deletions

View file

@ -72,7 +72,7 @@ http.createServer(function (req, res) {
}
let u = url.parse(req.url);
if (u.pathname === '/scroll') {
if (u.pathname === '/scroll' || u.pathname === '/mark') {
handleScroll(req, res);
} else if (u.pathname === '/a-pagenation') {
handleAPagenation(req, res);