feat: implement fake ip check mock

This commit is contained in:
divocat
2025-10-11 23:21:53 +03:00
parent 4334643e8e
commit e3e0b2d4e4
3 changed files with 29 additions and 0 deletions

View File

@@ -2694,6 +2694,18 @@ async function runNftCheck() {
}
}
// src/podkop/tabs/diagnostic/checks/runFakeIPCheck.ts
async function runFakeIPCheck() {
const code = "fake_ip_check";
updateDiagnosticsCheck({
code,
title: _("Fake IP checks"),
description: _("Not implemented yet"),
state: "skipped",
items: []
});
}
// src/podkop/tabs/diagnostic/initDiagnosticController.ts
async function renderDiagnosticsChecks() {
console.log("renderDiagnosticsChecks");
@@ -2715,6 +2727,7 @@ async function runChecks() {
await runDnsCheck();
await runSingBoxCheck();
await runNftCheck();
await runFakeIPCheck();
}
async function initDiagnosticController() {
onMount("diagnostic-status").then(() => {