mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 15:22:47 +01:00
feat: improve python actions (#1083)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
package ui
|
||||
package ui_test
|
||||
|
||||
import (
|
||||
"io/fs"
|
||||
@@ -6,9 +6,13 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/SecurityBrewery/catalyst/ui"
|
||||
)
|
||||
|
||||
func TestUI(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
tests := []struct {
|
||||
name string
|
||||
wantFiles []string
|
||||
@@ -22,7 +26,9 @@ func TestUI(t *testing.T) {
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
got := UI()
|
||||
t.Parallel()
|
||||
|
||||
got := ui.UI()
|
||||
|
||||
var gotFiles []string
|
||||
|
||||
|
||||
Reference in New Issue
Block a user