Skip to content

Commit

Permalink
fix: add tests correctly pointed
Browse files Browse the repository at this point in the history
  • Loading branch information
dnitsch committed Nov 9, 2022
1 parent 3812019 commit 8cbf00f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
NAME := uistrategy
OWNER := dnitsch
GIT_TAG := "0.1.2"
GIT_TAG := "0.1.3"
VERSION := "v$(GIT_TAG)"
REVISION := $(shell git rev-parse --short HEAD)

Expand Down Expand Up @@ -34,4 +34,8 @@ tag:
git push origin "v$(GIT_TAG)"

release:
OWNER=$(OWNER) NAME=$(NAME) PAT=$(PAT) VERSION=$(VERSION) . hack/release.sh
OWNER=$(OWNER) NAME=$(NAME) PAT=$(PAT) VERSION=$(VERSION) . hack/release.sh

# build tag release
btr: build tag release
echo "ran build tag release"
2 changes: 1 addition & 1 deletion cmd/uistrategy/uistrategy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func Test_runActions_integration(t *testing.T) {
},
{
name: "integration with configmanager",
path: "../../test/integration.yml",
path: "../../test/integration-with-configmanager.yml",
},
}
for _, tt := range tests {
Expand Down
2 changes: 1 addition & 1 deletion test/integration-with-configmanager.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Sample application with login
setup:
baseUrl: http://127.0.0.1:8090
continueOnError: true
continueOnError: false
isSinglePageApp: true
auth:
navigate: /_/#/login
Expand Down

0 comments on commit 8cbf00f

Please sign in to comment.