// Copyright 2023 wanderer // SPDX-License-Identifier: GPL-3.0-or-later package main import ( "flag" "testing" ) func TestRun(t *testing.T) { t.Log("call run() (TODO: improve this test)") timeout := "1m10s" t.Log("increase test timeout to", timeout) if err := flag.Set("test.timeout", timeout); err != nil { t.Errorf("failed to set timeout to %s", timeout) } run() }