Skip to content

Commit 56dfbd5

Browse files
committed
fix smoketests by moving the test command to relevant directory
1 parent 115f937 commit 56dfbd5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Taskfile.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,14 +190,16 @@ tasks:
190190
test:
191191
deps:
192192
- support
193+
dir: site/smoketests
193194
cmds:
194-
- go test -v github.com/starfederation/datastar/site/smoketests -run '^TestUnit' -count=1 -timeout=1m
195+
- go test -v . -run '^TestUnit' -count=1 -timeout=1m
195196

196197
test-all:
197198
deps:
198199
- support
200+
dir: site/smoketests
199201
cmds:
200-
- go test -v github.com/starfederation/datastar/site/smoketests -count=1 -timeout=1m
202+
- go test -v . -count=1 -timeout=1m
201203

202204
default:
203205
cmds:

0 commit comments

Comments
 (0)