gitea源码

12345678910111213141516171819
  1. // Copyright 2024 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package markup_test
  4. import (
  5. "os"
  6. "testing"
  7. "code.gitea.io/gitea/modules/markup"
  8. "code.gitea.io/gitea/modules/setting"
  9. )
  10. func TestMain(m *testing.M) {
  11. setting.IsInTesting = true
  12. markup.RenderBehaviorForTesting.DisableAdditionalAttributes = true
  13. os.Exit(m.Run())
  14. }