Skip to content

Commit 1c99bcc

Browse files
author
manno23
committed
fork: add worker-test package
- Add packages/worker-test/ for Cloudflare Workers integration testing - Includes test harness, wrangler config, and test runner
1 parent 3f453d4 commit 1c99bcc

7 files changed

Lines changed: 907 additions & 0 deletions

File tree

packages/worker-test/.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Dependencies
2+
node_modules/
3+
dist/
4+
.env
5+
.env.local
6+
.env.*.local
7+
8+
# TypeScript
9+
*.tsbuildinfo
10+
11+
# Wrangler
12+
.wrangler/
13+
worker-configuration.d.ts
14+
15+
# Logs
16+
*.log
17+
npm-debug.log*
18+
yarn-debug.log*
19+
yarn-error.log*
20+
pnpm-debug.log*
21+
22+
# OS
23+
.DS_Store
24+
Thumbs.db
25+
26+
# IDE
27+
.vscode/
28+
.idea/
29+
*.swp
30+
*.swo
31+
*~
32+
33+
# Test coverage
34+
coverage/
35+
.nyc_output/

0 commit comments

Comments
 (0)