import (
"testing"
- qt "github.com/frankban/quicktest"
jww "github.com/spf13/jwalterweatherman"
"github.com/gohugoio/hugo/htesting"
t.Skip("Skip long running test when running locally")
}
- c := qt.New(t)
-
files := `
-- assets/js/main.js --
/* A Car */
b := hugolib.NewIntegrationTestBuilder(
hugolib.IntegrationTestConfig{
- T: c,
+ T: t,
TxtarString: files,
NeedsOsFS: true,
NeedsNpmInstall: true,
import (
"testing"
- qt "github.com/frankban/quicktest"
-
"github.com/gohugoio/hugo/hugolib"
)
func TestExecuteAsTemplateMultipleLanguages(t *testing.T) {
- c := qt.New(t)
+ t.Parallel()
files := `
-- config.toml --
b := hugolib.NewIntegrationTestBuilder(
hugolib.IntegrationTestConfig{
- T: c,
+ T: t,
TxtarString: files,
}).Build()
import (
"testing"
- qt "github.com/frankban/quicktest"
-
"github.com/gohugoio/hugo/hugolib"
"github.com/gohugoio/hugo/resources/resource_transformers/tocss/dartsass"
)
t.Skip()
}
- c := qt.New(t)
-
files := `
-- assets/scss/main.scss --
@import "moo";
b := hugolib.NewIntegrationTestBuilder(
hugolib.IntegrationTestConfig{
- T: c,
+ T: t,
TxtarString: files,
NeedsOsFS: true,
}).Build()
if !dartsass.Supports() {
t.Skip()
}
- c := qt.New(t)
files := `
-- assets/scss/_moo.scss --
b := hugolib.NewIntegrationTestBuilder(
hugolib.IntegrationTestConfig{
- T: c,
+ T: t,
TxtarString: files,
NeedsOsFS: true,
},
t.Skip()
}
- c := qt.New(t)
-
files := `
-- assets/scss/components/_boo.scss --
$boolor: green;
b := hugolib.NewIntegrationTestBuilder(
hugolib.IntegrationTestConfig{
- T: c,
+ T: t,
TxtarString: files,
NeedsOsFS: true,
},
"testing"
"github.com/gohugoio/hugo/hugolib"
-
- qt "github.com/frankban/quicktest"
)
func TestUnmarshal(t *testing.T) {
- c := qt.New(t)
+ t.Parallel()
files := `
-- assets/api/myapi.yaml --
b := hugolib.NewIntegrationTestBuilder(
hugolib.IntegrationTestConfig{
- T: c,
+ T: t,
Running: true,
TxtarString: files,
},