Skip to content

Commit

Permalink
fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bassosimone committed Apr 4, 2024
1 parent bd06908 commit 1b61239
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions internal/cmd/miniooni/main_test.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
package main

import "testing"
import (
"testing"

"github.com/ooni/probe-cli/v3/internal/version"
)

func TestSimple(t *testing.T) {
if testing.Short() {
t.Skip("skip test in short mode")
}
MainWithConfiguration("example", &Options{
Yes: true,
SoftwareName: "miniooni",
SoftwareVersion: version.Version,
Yes: true,
})
}

0 comments on commit 1b61239

Please sign in to comment.