URI: 
       Simplify Babel test assertions - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 803f572e66c5e22213ddcc994c41b3e80e9c1f35
   DIR parent 6183184b966dafda6e4863dc30de450a8bb1bacd
  HTML Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
       Date:   Tue, 14 Dec 2021 07:26:53 +0100
       
       Simplify Babel test assertions
       
       To make the tests pass on my grand old Windows 8 VM.
       
       Diffstat:
         M hugolib/resource_chain_babel_test.… |      24 +++---------------------
       
       1 file changed, 3 insertions(+), 21 deletions(-)
       ---
   DIR diff --git a/hugolib/resource_chain_babel_test.go b/hugolib/resource_chain_babel_test.go
       @@ -133,27 +133,9 @@ Transpiled3: {{ $transpiled.Permalink }}
                b.Assert(logBuf.String(), qt.Contains, "babel: Hugo Environment: production")
                b.Assert(err, qt.IsNil)
        
       -        b.AssertFileContent("public/index.html", `
       -var Car = function Car(brand) {
       - _classCallCheck(this, Car);
       -
       - this.carname = brand;
       -};
       -`)
       -        b.AssertFileContent("public/index.html", `
       -var Car2 = function Car2(brand) {
       - _classCallCheck(this, Car2);
       -
       - this.carname = brand;
       -};
       -`)
       -        b.AssertFileContent("public/js/main2.js", `
       -var Car2 = function Car2(brand) {
       - _classCallCheck(this, Car2);
       -
       - this.carname = brand;
       -};
       -`)
       +        b.AssertFileContent("public/index.html", `var Car =`)
       +        b.AssertFileContent("public/index.html", `var Car2 =`)
       +        b.AssertFileContent("public/js/main2.js", `var Car2 =`)
                b.AssertFileContent("public/js/main2.js.map", `{"version":3,`)
                b.AssertFileContent("public/index.html", `
        //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozL`)