Skip to content

Commit f0e9026

Browse files
committed
Unskip nuxt-3-min tests
1 parent e443207 commit f0e9026

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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.skip('client-side errors', async () => {
4+
test.describe('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.skip('server-side errors', async () => {
4+
test.describe('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.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.skip('distributed tracing', () => {
4+
test.describe('distributed tracing', () => {
55
const PARAM = 's0me-param';
66

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

0 commit comments

Comments
 (0)