aboutsummaryrefslogtreecommitdiff
path: root/plugin/pkg/uniq/uniq_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/pkg/uniq/uniq_test.go')
-rw-r--r--plugin/pkg/uniq/uniq_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/pkg/uniq/uniq_test.go b/plugin/pkg/uniq/uniq_test.go
index 5d58c924b..2093fc7ec 100644
--- a/plugin/pkg/uniq/uniq_test.go
+++ b/plugin/pkg/uniq/uniq_test.go
@@ -4,7 +4,7 @@ import "testing"
func TestForEach(t *testing.T) {
u, i := New(), 0
- u.Set("test", func() error { i++; return nil })
+ u.Set("test", func() error { i++; return nil }, nil)
u.ForEach()
if i != 1 {
experiment'>jarred/fetch-experiment Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/response.file.test.js (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2022-03-23[bun.js] Bun.write for macOSGravatar Jarred Sumner 1-9/+41
2022-03-23[bun.js] Implement Bun.write()Gravatar Jarred SUmner 11-63/+959
2022-03-22Handle integer sizes greater than i32Gravatar Jarred SUmner 14-74/+142
2022-03-22Linux-specific tweaksGravatar Jarred SUmner 6-43/+52
2022-03-22`Response.file` -> `Bun.file`Gravatar Jarred Sumner 3-72/+65
2022-03-21sendfile worksGravatar Jarred Sumner 7-62/+174
2022-03-21[bun.js] 2/? Implement `Response.file`, sendfile editionGravatar Jarred Sumner 8-161/+506
2022-03-21[bun.js] 1/? Implement `Response.file`Gravatar Jarred Sumner 13-103/+1103