1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Anthony Fok <foka@debian.org>
Date: Thu, 25 Sep 2025 11:13:36 +0200
Subject: Skip tests in transpiler_test.go
The transpiler dart-sass-embedded is not included in this package,
and thus all transpiler-related tests would fail.
Origin: vendor
Forwarded: not-needed
Last-Update: 2021-01-14, 2023-07-21
---
transpiler_test.go | 1 +
1 file changed, 1 insertion(+)
diff --git a/transpiler_test.go b/transpiler_test.go
index 6b3eed3..06f8f8f 100644
--- a/transpiler_test.go
+++ b/transpiler_test.go
@@ -1,5 +1,6 @@
// Copyright 2024 Bjørn Erik Pedersen
// SPDX-License-Identifier: MIT
+//go:build ignore
package godartsass_test
|