mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-14 20:48:44 +00:00
@@ -3,25 +3,25 @@ async function getChallengePage() {
|
||||
headers: {
|
||||
"Accept-Language": "en",
|
||||
"User-Agent": "CHALLENGE",
|
||||
}
|
||||
},
|
||||
})
|
||||
.then(resp => {
|
||||
.then((resp) => {
|
||||
if (resp.status !== 200) {
|
||||
throw new Error(`wanted status 200, got status: ${resp.status}`);
|
||||
}
|
||||
return resp;
|
||||
})
|
||||
.then(resp => resp.text());
|
||||
.then((resp) => resp.text());
|
||||
}
|
||||
|
||||
(async () => {
|
||||
const page = await getChallengePage();
|
||||
|
||||
if (!page.includes(`<html lang="de">`)) {
|
||||
console.log(page)
|
||||
console.log(page);
|
||||
throw new Error("force language smoke test failed");
|
||||
}
|
||||
|
||||
console.log("FORCED_LANGUAGE=de caused a page to be rendered in german");
|
||||
process.exit(0);
|
||||
})();
|
||||
})();
|
||||
|
||||
Reference in New Issue
Block a user