mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
parent
03e2d7462d
commit
a8e9f8389a
2 changed files with 4 additions and 4 deletions
|
@ -620,7 +620,7 @@ func loadDefaultSettingsFor(v *viper.Viper) error {
|
||||||
v.SetDefault("disableAliases", false)
|
v.SetDefault("disableAliases", false)
|
||||||
v.SetDefault("debug", false)
|
v.SetDefault("debug", false)
|
||||||
v.SetDefault("disableFastRender", false)
|
v.SetDefault("disableFastRender", false)
|
||||||
v.SetDefault("timeout", 15000) // 15 seconds
|
v.SetDefault("timeout", 30000) // 30 seconds
|
||||||
v.SetDefault("enableInlineShortcodes", false)
|
v.SetDefault("enableInlineShortcodes", false)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
|
@ -64,7 +64,7 @@ func TestPageBundlerSiteRegular(t *testing.T) {
|
||||||
if canonify {
|
if canonify {
|
||||||
relURLBase = ""
|
relURLBase = ""
|
||||||
}
|
}
|
||||||
fs, cfg := newTestBundleSources(t)
|
fs, cfg := newTestBundleSources(c)
|
||||||
cfg.Set("baseURL", baseURL)
|
cfg.Set("baseURL", baseURL)
|
||||||
cfg.Set("canonifyURLs", canonify)
|
cfg.Set("canonifyURLs", canonify)
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@ func TestPageBundlerSiteRegular(t *testing.T) {
|
||||||
|
|
||||||
cfg.Set("uglyURLs", ugly)
|
cfg.Set("uglyURLs", ugly)
|
||||||
|
|
||||||
b := newTestSitesBuilderFromDepsCfg(t, deps.DepsCfg{Logger: loggers.NewErrorLogger(), Fs: fs, Cfg: cfg}).WithNothingAdded()
|
b := newTestSitesBuilderFromDepsCfg(c, deps.DepsCfg{Logger: loggers.NewErrorLogger(), Fs: fs, Cfg: cfg}).WithNothingAdded()
|
||||||
|
|
||||||
b.Build(BuildCfg{})
|
b.Build(BuildCfg{})
|
||||||
|
|
||||||
|
@ -672,7 +672,7 @@ Single content.
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTestBundleSources(t *testing.T) (*hugofs.Fs, *viper.Viper) {
|
func newTestBundleSources(t testing.TB) (*hugofs.Fs, *viper.Viper) {
|
||||||
cfg, fs := newTestCfgBasic()
|
cfg, fs := newTestCfgBasic()
|
||||||
c := qt.New(t)
|
c := qt.New(t)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue