Skip to content

Commit d0daf2b

Browse files
committed
Skip nuxt-3-min tests
1 parent 834e809 commit d0daf2b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

dev-packages/e2e-tests/test-applications/nuxt-3-min/tests/errors.client.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { expect, test } from '@nuxt/test-utils/playwright';
22
import { waitForError } from '@sentry-internal/test-utils';
33

4-
test.describe('client-side errors', async () => {
4+
test.describe.skip('client-side errors', async () => {
55
test('captures error thrown on click', async ({ page }) => {
66
const errorPromise = waitForError('nuxt-3-min', async errorEvent => {
77
return errorEvent?.exception?.values?.[0]?.value === 'Error thrown from Nuxt-3-min E2E test app';

dev-packages/e2e-tests/test-applications/nuxt-3-min/tests/errors.server.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { expect, test } from '@playwright/test';
22
import { waitForError } from '@sentry-internal/test-utils';
33

4-
test.describe('server-side errors', async () => {
4+
test.describe.skip('server-side errors', async () => {
55
test('captures api fetch error (fetched on click)', async ({ page }) => {
66
const errorPromise = waitForError('nuxt-3-min', async errorEvent => {
77
return errorEvent?.exception?.values?.[0]?.value === 'Nuxt 3 Server error';

dev-packages/e2e-tests/test-applications/nuxt-3-min/tests/tracing.client.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { expect, test } from '@nuxt/test-utils/playwright';
22
import { waitForTransaction } from '@sentry-internal/test-utils';
33
import type { Span } from '@sentry/nuxt';
44

5-
test('sends a pageload root span with a parameterized URL', async ({ page }) => {
5+
test.skip('sends a pageload root span with a parameterized URL', async ({ page }) => {
66
const transactionPromise = waitForTransaction('nuxt-3-min', async transactionEvent => {
77
return transactionEvent.transaction === '/test-param/:param()';
88
});
@@ -31,7 +31,7 @@ test('sends a pageload root span with a parameterized URL', async ({ page }) =>
3131
});
3232
});
3333

34-
test('sends component tracking spans when `trackComponents` is enabled', async ({ page }) => {
34+
test.skip('sends component tracking spans when `trackComponents` is enabled', async ({ page }) => {
3535
const transactionPromise = waitForTransaction('nuxt-3-min', async transactionEvent => {
3636
return transactionEvent.transaction === '/client-error';
3737
});

dev-packages/e2e-tests/test-applications/nuxt-3-min/tests/tracing.server.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { expect, test } from '@playwright/test';
22
import { waitForTransaction } from '@sentry-internal/test-utils';
33
import { SEMANTIC_ATTRIBUTE_SENTRY_OP, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN } from '@sentry/core';
44

5-
test('sends a server action transaction on pageload', async ({ page }) => {
5+
test.skip('sends a server action transaction on pageload', async ({ page }) => {
66
const transactionPromise = waitForTransaction('nuxt-3-min', transactionEvent => {
77
return transactionEvent.transaction.includes('GET /test-param/');
88
});
@@ -21,7 +21,7 @@ test('sends a server action transaction on pageload', async ({ page }) => {
2121
);
2222
});
2323

24-
test('does not send transactions for build asset folder "_nuxt"', async ({ page }) => {
24+
test.skip('does not send transactions for build asset folder "_nuxt"', async ({ page }) => {
2525
let buildAssetFolderOccurred = false;
2626

2727
waitForTransaction('nuxt-3-min', transactionEvent => {

dev-packages/e2e-tests/test-applications/nuxt-3-min/tests/tracing.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { expect, test } from '@playwright/test';
22
import { waitForTransaction } from '@sentry-internal/test-utils';
33

4-
test.describe('distributed tracing', () => {
4+
test.describe.skip('distributed tracing', () => {
55
const PARAM = 's0me-param';
66

77
test('capture a distributed pageload trace', async ({ page }) => {

0 commit comments

Comments
 (0)