diff options
author | Bjørn Erik Pedersen <[email protected]> | 2022-03-17 17:22:34 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2022-03-17 21:45:43 +0100 |
commit | 423594e03a906ef4150f433666ff588b022c3c92 (patch) | |
tree | f56bf832a773cc723c25f30771f830d8a657549f /hugolib/integrationtest_builder.go | |
parent | 64afb7ca51ef5fd5d4a0afa121183217292daa5e (diff) | |
download | hugo-423594e03a906ef4150f433666ff588b022c3c92.tar.gz hugo-423594e03a906ef4150f433666ff588b022c3c92.zip |
dartsass: Enable deprecation, @warn and @debug logging
* @warn and Sass deprecations are printed as WARN
* @debug is currently logged as INFO (needs the `--verbose` flag). We may adjust this if it gets too chatty.
Fixes #9683
Diffstat (limited to 'hugolib/integrationtest_builder.go')
-rw-r--r-- | hugolib/integrationtest_builder.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hugolib/integrationtest_builder.go b/hugolib/integrationtest_builder.go index 1bfa194bd..d49e29763 100644 --- a/hugolib/integrationtest_builder.go +++ b/hugolib/integrationtest_builder.go @@ -6,6 +6,7 @@ import ( "io" "os" "path/filepath" + "regexp" "strings" "sync" "testing" @@ -98,6 +99,12 @@ func (s *IntegrationTestBuilder) AssertLogContains(text string) { s.Assert(s.logBuff.String(), qt.Contains, text) } +func (s *IntegrationTestBuilder) AssertLogMatches(expression string) { + s.Helper() + re := regexp.MustCompile(expression) + s.Assert(re.MatchString(s.logBuff.String()), qt.IsTrue, qt.Commentf(s.logBuff.String())) +} + func (s *IntegrationTestBuilder) AssertBuildCountData(count int) { s.Helper() s.Assert(s.H.init.data.InitCount(), qt.Equals, count) |