File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
dev-packages/e2e-tests/test-applications/nuxt-3-min/tests Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11import { expect , test } from '@nuxt/test-utils/playwright' ;
22import { 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' ;
Original file line number Diff line number Diff line change 11import { expect , test } from '@playwright/test' ;
22import { 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' ;
Original file line number Diff line number Diff line change 11import { expect , test } from '@playwright/test' ;
22import { 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 } ) => {
You can’t perform that action at this time.
0 commit comments