1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-11-06 08:39:09 +02:00

Feature/#44 e2e tests (#122)

This commit is contained in:
Tim Voronov
2018-10-14 15:38:14 -04:00
committed by GitHub
parent 0f3128e842
commit 2bb67f6a90
28 changed files with 5584 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: build install test doc fmt lint vet
.PHONY: build compile install test e2e doc fmt lint vet release
export GOPATH
@@ -6,6 +6,7 @@ VERSION ?= $(shell git describe --tags --always --dirty)
DIR_BIN = ./bin
DIR_PKG = ./pkg
DIR_CLI = ./cli
DIR_E2E = ./e2e
default: build
@@ -22,6 +23,9 @@ install:
test:
go test ${DIR_PKG}/...
e2e:
go run ${DIR_E2E}/main.go --tests ${DIR_E2E}/tests --pages ${DIR_E2E}/pages
generate:
go generate ${DIR_PKG}/...