Skip to content

Commit a9a9148

Browse files
aldy505Copilot
andauthored
test: integration test for user feedback (#3880)
* test: integration test for user feedback * fix(test): try to set shell to True to use environment variables * chore: debug nodejs sdk output * test: run user feedback test only on feature-complete * test: make javascript file relative * Update _integration-test/nodejs/package.json Co-authored-by: Copilot <[email protected]> * Update _integration-test/test_01_basics.py Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Copilot <[email protected]>
1 parent 9b4f9ea commit a9a9148

File tree

7 files changed

+1089
-0
lines changed

7 files changed

+1089
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import * as Sentry from "@sentry/node";
2+
3+
Sentry.init({
4+
dsn: process.env.SENTRY_DSN,
5+
sampleRate: 1.0,
6+
tracesSampleRate: 1.0,
7+
enableLogs: true,
8+
profileLifecycle: "manual",
9+
sendClientReports: true,
10+
sendDefaultPii: true,
11+
debug: true,
12+
});

0 commit comments

Comments
 (0)