mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-11-08 23:53:13 +00:00
14 lines
273 B
Go
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)
|
|
}
|