2022-09-02 13:48:12 -07:00
|
|
|
SHELL = /bin/bash
|
|
|
|
.DEFAULT_GOAL := serve
|
|
|
|
.PHONY: test
|
|
|
|
|
|
|
|
test:
|
2022-09-08 17:10:04 -07:00
|
|
|
./tests/test_locking_funds.sh
|
2022-09-02 13:48:12 -07:00
|
|
|
./tests/test_auction_flow.sh
|
2022-09-13 22:43:17 -07:00
|
|
|
./tests/test_auction_flow_verified.sh
|
2022-09-04 17:42:28 -07:00
|
|
|
|
|
|
|
utest:
|
|
|
|
go test ./...
|