dartsass: Add silenceDeprecations option

Fixes #13045
This commit is contained in:
Bjørn Erik Pedersen 2024-11-18 10:04:37 +01:00
parent 1fd845eee4
commit 3b6eaf9b1f
7 changed files with 57 additions and 2 deletions

View file

@ -76,6 +76,13 @@ func TestOptWarn() TestOpt {
}
}
// TestOptOsFs will enable the real file system in integration tests.
func TestOptOsFs() TestOpt {
return func(c *IntegrationTestConfig) {
c.NeedsOsFS = true
}
}
// TestOptWithNFDOnDarwin will normalize the Unicode filenames to NFD on Darwin.
func TestOptWithNFDOnDarwin() TestOpt {
return func(c *IntegrationTestConfig) {