Require project path to not be empty on test setup

This commit is contained in:
Chris Roberts 2023-06-12 09:19:33 -07:00
parent 49b0aac36c
commit 02f844a05d

View File

@ -59,6 +59,8 @@ func TestMinimalProject(t testing.T) *Project {
}...,
)
require.NotEmpty(t, p.project.Path)
require.NoError(t, err)
require.NoError(t, p.Save())