hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit 144943798c2a199ed256ae901a14d3c918055eba
parent 440fdb0eb96b3230ddefee732b0c1afe52a37228
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date:   Mon,  1 Feb 2021 10:23:28 +0100

github: Enable NPM tests on Windows

Fixes #8196

Diffstat:
Mhugolib/js_test.go | 4----
Mhugolib/resource_chain_babel_test.go | 5-----
Mhugolib/resource_chain_test.go | 9++-------
3 files changed, 2 insertions(+), 16 deletions(-)
diff --git a/hugolib/js_test.go b/hugolib/js_test.go
@@ -38,10 +38,6 @@ func TestJSBuildWithNPM(t *testing.T) {
 		t.Skip("skip (relative) long running modules test when running locally")
 	}
 
-	if runtime.GOOS == "windows" {
-		t.Skip("skip NPM test on Windows")
-	}
-
 	wd, _ := os.Getwd()
 	defer func() {
 		os.Chdir(wd)
diff --git a/hugolib/resource_chain_babel_test.go b/hugolib/resource_chain_babel_test.go
@@ -17,7 +17,6 @@ import (
 	"bytes"
 	"os"
 	"path/filepath"
-	"runtime"
 	"testing"
 
 	"github.com/gohugoio/hugo/common/hexec"
@@ -40,10 +39,6 @@ func TestResourceChainBabel(t *testing.T) {
 		t.Skip("skip (relative) long running modules test when running locally")
 	}
 
-	if runtime.GOOS == "windows" {
-		t.Skip("skip npm test on Windows")
-	}
-
 	wd, _ := os.Getwd()
 	defer func() {
 		os.Chdir(wd)
diff --git a/hugolib/resource_chain_test.go b/hugolib/resource_chain_test.go
@@ -23,7 +23,6 @@ import (
 	"github.com/gohugoio/hugo/resources/resource_transformers/tocss/dartsass"
 
 	"path/filepath"
-	"runtime"
 	"strings"
 	"testing"
 	"time"
@@ -925,10 +924,6 @@ func TestResourceChainPostCSS(t *testing.T) {
 		t.Skip("skip (relative) long running modules test when running locally")
 	}
 
-	if runtime.GOOS == "windows" {
-		t.Skip("skip npm test on Windows")
-	}
-
 	wd, _ := os.Getwd()
 	defer func() {
 		os.Chdir(wd)
@@ -1034,8 +1029,8 @@ class-in-b {
 
 	// Make sure Node sees this.
 	b.Assert(logBuf.String(), qt.Contains, "Hugo Environment: production")
-	b.Assert(logBuf.String(), qt.Contains, fmt.Sprintf("PostCSS Config File: %s/postcss.config.js", workDir))
-	b.Assert(logBuf.String(), qt.Contains, fmt.Sprintf("package.json: %s/package.json", workDir))
+	b.Assert(logBuf.String(), qt.Contains, filepath.FromSlash(fmt.Sprintf("PostCSS Config File: %s/postcss.config.js", workDir)))
+	b.Assert(logBuf.String(), qt.Contains, filepath.FromSlash(fmt.Sprintf("package.json: %s/package.json", workDir)))
 
 	b.AssertFileContent("public/index.html", `
 Styles RelPermalink: /css/styles.css