photoprism/internal/config/develop_test.go
Michael Mayer 163db703d1 Config: Add "develop" feature flag to disable new viewer sidebar #3168
Signed-off-by: Michael Mayer <michael@photoprism.app>
2025-02-03 12:29:02 +01:00

12 lines
186 B
Go

package config
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestDevelop(t *testing.T) {
c := NewConfig(CliTestContext())
assert.Equal(t, Develop, c.Develop())
}