Skip to content

Commit e178720

Browse files
committed
feat: new integration test framework
1 parent 429c901 commit e178720

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+6838
-0
lines changed

integration_test/.gcloudignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# .gcloudignore for integration test Cloud Build
2+
# Include all files needed for the build
3+
4+
# Ignore node_modules as we'll install them fresh
5+
node_modules/
6+
generated/
7+
8+
# Ignore local auth files (we'll use secrets instead)
9+
sa.json
10+
sa-v2.json
11+
test-config.json
12+
13+
# Ignore local test artifacts
14+
test_failures.txt
15+
*.log
16+
17+
# Keep git info for reference
18+
.git
19+
.gitignore
20+
21+
# Ignore temp files
22+
*.tmp
23+
*~
24+
.DS_Store

integration_test/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules/
2+
generated/
3+
.test-artifacts/
4+
*.log
5+
.DS_Store
6+
package-lock.json
7+
firebase-debug.log
8+
firebase-functions-python-local.whl

0 commit comments

Comments
 (0)