CasaOS/pkg/utils/command/command_helper_test.go
Tiger Wang 3dc1e454d5 wip
2022-12-15 21:33:55 +00:00

14 lines
273 B
Go

package command
import (
"path/filepath"
"testing"
"github.com/IceWhaleTech/CasaOS-Common/utils/constants"
)
func TestExecutePostStartScripts(t *testing.T) {
scriptDirectory := filepath.Join(constants.DefaultConfigPath, "start.d")
ExecuteScripts(scriptDirectory)
}