mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-08-21 09:53:46 +00:00
* Enable acceptance tests * Fix the acceptance tests * Move `--headless` from `getDefaultCommandArgs` to `getDefaultTapCommandArgs` * Fix rest of the failing acceptance tests * Revert "Enable acceptance tests" This reverts commit3f919e865a
. * Revert "Revert "Enable acceptance tests"" This reverts commitc0bfe54b70
. * Ignore `--headless` in `mizu view` * Make all non-informative things informative * Remove `github.com/stretchr/testify` dependency from the acceptance tests * Move the helper methods `waitTimeout` and `checkDBHasEntries` from `tap_test.go` to `testsUtils.go` * Split `checkDBHasEntries` method into `getDBEntries` and `assertEntriesAtLeast` methods * Revert "Revert "Revert "Enable acceptance tests""" This reverts commitc13342671c
. * Revert "Revert "Revert "Revert "Enable acceptance tests"""" This reverts commit0f8c436926
. * Make `getDBEntries` and `checkEntriesAtLeast` methods return errors instead * Revert "Revert "Revert "Revert "Revert "Enable acceptance tests""""" This reverts commit643fdde009
.
14 lines
306 B
Modula-2
14 lines
306 B
Modula-2
module github.com/up9inc/mizu/tests
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/up9inc/mizu/shared v0.0.0
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
|
)
|
|
|
|
replace github.com/up9inc/mizu/shared v0.0.0 => ../shared
|
|
|
|
replace github.com/up9inc/mizu/tap/api v0.0.0 => ../tap/api
|