Skip to content

Commit 0a74c10

Browse files
committed
Move event-proxy-server out.
1 parent f71d060 commit 0a74c10

File tree

6 files changed

+5
-257
lines changed

6 files changed

+5
-257
lines changed

dev-packages/e2e-tests/test-applications/node-koa-app/event-proxy-server.ts

Lines changed: 0 additions & 253 deletions
This file was deleted.

dev-packages/e2e-tests/test-applications/node-koa-app/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"typescript": "4.9.5"
1919
},
2020
"devDependencies": {
21+
"@sentry-internal/event-proxy-server": "link:../../../event-proxy-server",
2122
"@playwright/test": "^1.27.1",
2223
"ts-node": "10.9.1"
2324
},

dev-packages/e2e-tests/test-applications/node-koa-app/start-event-proxy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { startEventProxyServer } from './event-proxy-server';
1+
import { startEventProxyServer } from '@sentry-internal/event-proxy-server';
22

33
startEventProxyServer({
44
port: 3031,

dev-packages/e2e-tests/test-applications/node-koa-app/tests/errors.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { expect, test } from '@playwright/test';
2+
import { waitForError } from '@sentry-internal/event-proxy-server';
23
import axios, { AxiosError } from 'axios';
3-
import { waitForError } from '../event-proxy-server';
44

55
const authToken = process.env.E2E_TEST_AUTH_TOKEN;
66
const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG;

dev-packages/e2e-tests/test-applications/node-koa-app/tests/propagation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import crypto from 'crypto';
22
import { expect, test } from '@playwright/test';
3+
import { waitForTransaction } from '@sentry-internal/event-proxy-server';
34
import { SpanJSON } from '@sentry/types';
45
import axios from 'axios';
5-
import { waitForTransaction } from '../event-proxy-server';
66

77
test('Propagates trace for outgoing http requests', async ({ baseURL }) => {
88
const id = crypto.randomUUID();

dev-packages/e2e-tests/test-applications/node-koa-app/tests/transactions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { expect, test } from '@playwright/test';
2+
import { waitForTransaction } from '@sentry-internal/event-proxy-server';
23
import axios, { AxiosError } from 'axios';
3-
import { waitForTransaction } from '../event-proxy-server';
44

55
const authToken = process.env.E2E_TEST_AUTH_TOKEN;
66
const sentryTestOrgSlug = process.env.E2E_TEST_SENTRY_ORG_SLUG;

0 commit comments

Comments
 (0)