From da70b10fbd056f19d892acad542ce96c40c58389 Mon Sep 17 00:00:00 2001 From: James O'Doherty Date: Fri, 29 May 2026 23:35:21 -0400 Subject: refactor: rename module to git.theodohertyfamily.com/wg-wrap and apply public domain license - Update go.mod and all internal imports to reflect the new module path - Add LICENSE file with the Unlicense (public domain dedication) - Increase timeouts in e2e lifecycle tests to prevent flaky failures - Verify all tests, linting, and formatting pass with the new module name --- tests/e2e/lifecycle_test.go | 4 ++-- tests/e2e/vulnerability_test.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/e2e') diff --git a/tests/e2e/lifecycle_test.go b/tests/e2e/lifecycle_test.go index b6c001b..6cff0c8 100644 --- a/tests/e2e/lifecycle_test.go +++ b/tests/e2e/lifecycle_test.go @@ -10,7 +10,7 @@ import ( ) func waitForPids(t *testing.T, pidsDir string, expectedCount int) { - timeout := time.After(5 * time.Second) + timeout := time.After(10 * time.Second) tick := time.NewTicker(100 * time.Millisecond) defer tick.Stop() @@ -38,7 +38,7 @@ func waitForPids(t *testing.T, pidsDir string, expectedCount int) { } func waitForLifecycle(t *testing.T, binaryPath, runtimeDir, profile string, expectedActive bool) { - timeout := time.After(5 * time.Second) + timeout := time.After(10 * time.Second) tick := time.NewTicker(100 * time.Millisecond) defer tick.Stop() diff --git a/tests/e2e/vulnerability_test.go b/tests/e2e/vulnerability_test.go index a8c2dfb..8de38a3 100644 --- a/tests/e2e/vulnerability_test.go +++ b/tests/e2e/vulnerability_test.go @@ -8,7 +8,7 @@ import ( "strings" "testing" - "git.theodohertyfamily.com/tools/wg-wrap/internal/cli" + "git.theodohertyfamily.com/wg-wrap/internal/cli" ) // TestEditorArgumentSplitting verifies that the editor is correctly split into command and arguments. -- cgit v1.2.3