فهرست منبع

Don't delay test pages' JS file

Alexandre Dieulot 6 سال پیش
والد
کامیت
3a39adeed1
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      test/app.js

+ 2 - 2
test/app.js

@@ -26,8 +26,6 @@ function sha384(data) {
 }
 
 async function requestListener(req, res) {
-  await sleep(SLEEP_TIME)
-
   let headers = {
     'Content-Type': 'text/html',
   }
@@ -48,6 +46,8 @@ async function requestListener(req, res) {
     content += jsContent
   }
   else if (!isNaN(page)) {
+    await sleep(SLEEP_TIME)
+
     if (CACHE_MAX_AGE) {
       headers['Cache-Control'] = `max-age=${CACHE_MAX_AGE}`
     }