Skip to content

Commit

Permalink
fix stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
mydea committed Jul 4, 2024
1 parent 888ffc0 commit 8c7523a
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@glimmer/tracking": "^1.1.2",
"@playwright/test": "^1.44.1",
"@ember/string": "^3.1.1",
"@sentry-internal/event-proxy-server": "link:../../../event-proxy-server",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/ember": "latest || *",
"@tsconfig/ember": "^3.0.6",
"@tsconfig/node18": "18.2.4",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { startEventProxyServer } from '@sentry-internal/event-proxy-server';
import { startEventProxyServer } from '@sentry-internal/test-utils';

startEventProxyServer({
port: 3031,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect, test } from '@playwright/test';
import { waitForError, waitForTransaction } from '@sentry-internal/event-proxy-server';
import { waitForError, waitForTransaction } from '@sentry-internal/test-utils';

test('sends an error', async ({ page }) => {
const errorPromise = waitForError('ember-classic', async errorEvent => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect, test } from '@playwright/test';
import { waitForTransaction } from '@sentry-internal/event-proxy-server';
import { waitForTransaction } from '@sentry-internal/test-utils';

test('sends a pageload transaction with a parameterized URL', async ({ page }) => {
const transactionPromise = waitForTransaction('ember-classic', async transactionEvent => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"webpack": "^5.91.0",
"@playwright/test": "^1.44.1",
"@sentry/ember": "latest || *",
"@sentry-internal/event-proxy-server": "link:../../../event-proxy-server",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@tsconfig/ember": "^3.0.6",
"@types/node": "18.18.0",
"@tsconfig/node18": "18.2.4",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { startEventProxyServer } from '@sentry-internal/event-proxy-server';
import { startEventProxyServer } from '@sentry-internal/test-utils';

startEventProxyServer({
port: 3031,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect, test } from '@playwright/test';
import { waitForError, waitForTransaction } from '@sentry-internal/event-proxy-server';
import { waitForError, waitForTransaction } from '@sentry-internal/test-utils';

test('sends an error', async ({ page }) => {
const errorPromise = waitForError('ember-embroider', async errorEvent => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect, test } from '@playwright/test';
import { waitForTransaction } from '@sentry-internal/event-proxy-server';
import { waitForTransaction } from '@sentry-internal/test-utils';

test('sends a pageload transaction with a parameterized URL', async ({ page }) => {
const transactionPromise = waitForTransaction('ember-embroider', async transactionEvent => {
Expand Down

0 comments on commit 8c7523a

Please sign in to comment.