mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
ef4dfcec6c
Fix #1406 Instead of loading the file from http://localhost:port/, it can be loaded from /.
20 lines
500 B
Go
20 lines
500 B
Go
package transform
|
|
|
|
import (
|
|
"bytes"
|
|
"github.com/spf13/hugo/helpers"
|
|
"testing"
|
|
)
|
|
|
|
func TestLiveReloadInject(t *testing.T) {
|
|
out := new(bytes.Buffer)
|
|
in := helpers.StringToReader("</body>")
|
|
|
|
tr := NewChain(LiveReloadInject)
|
|
tr.Apply(out, in, []byte("path"))
|
|
|
|
expected := `<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>`
|
|
if string(out.Bytes()) != expected {
|
|
t.Errorf("Expected %s got %s", expected, string(out.Bytes()))
|
|
}
|
|
}
|