forgejo/tests/integration/window_config_test.go
Gusted 9a8bdc6cbd
chore: add integration test
Check that the correct value ends up in `window.config`.
2025-08-10 23:11:41 +02:00

20 lines
492 B
Go

// Copyright 2025 The Forgejo Authors. All rights reserved.
// SPDX-License-Identifier: GPL-3.0-or-later
package integration
import (
"net/http"
"testing"
"forgejo.org/tests"
"github.com/stretchr/testify/assert"
)
func TestWindowConfig(t *testing.T) {
defer tests.PrepareTestEnv(t)()
resp := MakeRequest(t, NewRequest(t, "GET", "/"), http.StatusOK)
assert.Contains(t, resp.Body.String(), `customEmojis: new Set(["git","gitea","codeberg","gitlab","github","gogs","forgejo"]),`)
}