mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-07 07:42:45 +01:00
refactor: improve setup and maintainability (#1067)
This commit is contained in:
@@ -1,29 +0,0 @@
|
||||
package ui
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestUI(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
tests := []struct {
|
||||
name string
|
||||
path string
|
||||
}{
|
||||
{"index.html", "dist/index.html"},
|
||||
{"favicon.ico", "dist/favicon.ico"},
|
||||
{"manifest.json", "dist/manifest.json"},
|
||||
{"img", "dist/img"},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
tt := tt
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
f, err := UI.Open(tt.path)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
defer f.Close()
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user