(t *testing.T)
| 15 | ) |
| 16 | |
| 17 | func TestCodeLens(t *testing.T) { |
| 18 | testsFolder := filepath.Join(os.TempDir(), "codeLensTests") |
| 19 | bakeFilePath := filepath.Join(testsFolder, "docker-bake.hcl") |
| 20 | uriString := fmt.Sprintf("file:///%v", filepath.ToSlash(bakeFilePath)) |
| 21 | testCodeLens(t, testsFolder, uriString) |
| 22 | } |
| 23 | |
| 24 | func TestCodeLens_WSL(t *testing.T) { |
| 25 | testCodeLens(t, "\\\\wsl$\\docker-desktop\\tmp", "file://wsl%24/docker-desktop/tmp/docker-bake.hcl") |
nothing calls this directly
no test coverage detected