Skip to content

Commit

Permalink
fix: n = 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Davincible committed Dec 25, 2022
1 parent 24ad147 commit d876cff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions action_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

func TestRunCommand(t *testing.T) {
testRun(t,
3,
n,
NewConfig(
WithTimeout(20*time.Second),
WithHeadless(),
Expand All @@ -32,7 +32,7 @@ func TestBlockURLs(t *testing.T) {
btn := `//button[@title="Akkoord"]`

testRun(t,
3,
n,
NewConfig(
WithTimeout(20*time.Second),
WithHeadless(),
Expand Down Expand Up @@ -63,7 +63,7 @@ func TestCookiesExtract(t *testing.T) {
btn := `//button[@title="Akkoord"]`

testRun(t,
3,
n,
NewConfig(
WithTimeout(20*time.Second),
WithHeadless(),
Expand Down
4 changes: 3 additions & 1 deletion chrome_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ import (
"github.com/hashicorp/go-multierror"
)

var n = 3

func TestChromedpundetected(t *testing.T) {
testRun(t,
3,
n,
NewConfig(
WithTimeout(20*time.Second),
WithHeadless(),
Expand Down

0 comments on commit d876cff

Please sign in to comment.