We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 640fa9f commit 2085ea9Copy full SHA for 2085ea9
.gitignore
@@ -12,6 +12,7 @@ pkged.go
12
# Test results
13
coverage.txt
14
coverage-filtered.txt
15
+coverage.html
16
17
# Development
18
.env
tests/functional_test.go
@@ -26,10 +26,15 @@ import (
26
"time"
27
28
"github.com/ItalyPaleAle/prvt/cmd"
29
+ "github.com/ItalyPaleAle/prvt/index"
30
)
31
32
// TestFunctional performs a series of functional tests on the CLI and on the server
33
func TestFunctional(t *testing.T) {
34
+ // Set some environmental variables
35
+ // Lower the threshold for splitting the index into multiple chunks
36
+ index.ChunkSize = 5
37
+
38
// Run the test suite
39
suite := funcTestSuite{}
40
suite.Run(t)
0 commit comments