(m *testing.M)
| 26 | ) |
| 27 | |
| 28 | func TestMain(m *testing.M) { |
| 29 | if runtime.GOOS == "windows" { |
| 30 | // Don't run goleak on windows tests, they're super flaky right now. |
| 31 | // See: https://github.com/coder/coder/issues/8954 |
| 32 | os.Exit(m.Run()) |
| 33 | } |
| 34 | goleak.VerifyTestMain(m, testutil.GoleakOptions...) |
| 35 | } |
| 36 | |
| 37 | func Test_formatExamples(t *testing.T) { |
| 38 | t.Parallel() |