Auth0 qs setup --app --type spa --framework angular.
(t *testing.T)
| 107 | |
| 108 | // Auth0 qs setup --app --type spa --framework angular. |
| 109 | func TestDetectProject_Angular(t *testing.T) { |
| 110 | dir := t.TempDir() |
| 111 | writeTestFile(t, dir, "angular.json", `{}`) |
| 112 | |
| 113 | got := DetectProject(dir) |
| 114 | assert.True(t, got.Detected) |
| 115 | assert.Equal(t, "angular", got.Framework) |
| 116 | assert.Equal(t, "spa", got.Type) |
| 117 | assert.Empty(t, got.BuildTool) |
| 118 | } |
| 119 | |
| 120 | // Auth0 qs setup --app --type spa --framework vue --build-tool vite. |
| 121 | func TestDetectProject_Vue(t *testing.T) { |
nothing calls this directly
no test coverage detected