https://github.com/anatollupacescu/arbortest
Graph like testing library
https://github.com/anatollupacescu/arbortest
graph testing
Last synced: 5 months ago
JSON representation
Graph like testing library
- Host: GitHub
- URL: https://github.com/anatollupacescu/arbortest
- Owner: anatollupacescu
- Created: 2020-06-25T08:31:43.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T09:46:52.000Z (over 3 years ago)
- Last Synced: 2023-07-27T21:54:39.090Z (almost 3 years ago)
- Topics: graph, testing
- Language: JavaScript
- Homepage:
- Size: 611 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# arbortest
Chain your tests in a graph like manner.
## example
to generate the arbor test file run command
> go run -v arborgen/main.go -pkg=example -dir=./example
then compile the UI files from the `/web` folder
> yarn build
then start the UI server
> go run broker.go server.go -port=3000
and run the tests
> go test -v ./example/... -args --arborURL=
to check the result go to
## to install the UI server locally
> make install-server
then you can start the UI server: `arbortest -port=3000`
## to install the generator locally
> make install-gen
then you can run it: `arborgen -pkg=example_test -dir ./testdir`