mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-01-08 01:37:26 -08:00
14 lines
299 B
Go
14 lines
299 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestSettingsExportJSON(t *testing.T) {
|
||
|
content := exportConfig("../themes/jandedobbeleer.omp.json", "json")
|
||
|
assert.NotContains(t, content, "\\u003ctransparent\\u003e")
|
||
|
assert.Contains(t, content, "<transparent>")
|
||
|
}
|