File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
dev-packages/browser-integration-tests/suites/integrations/supabase Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ async function mockSupabaseRoute(page: Page) {
1919 } ) ;
2020}
2121
22+ const bundle = process . env . PW_BUNDLE || '' ;
23+ // We only want to run this in non-CDN bundle mode
24+ if ( bundle . startsWith ( 'bundle' ) ) {
25+ sentryTest . skip ( ) ;
26+ }
27+
2228sentryTest ( 'should capture Supabase queue spans from client.rpc' , async ( { getLocalTestUrl, page } ) => {
2329 await mockSupabaseRoute ( page ) ;
2430
Original file line number Diff line number Diff line change @@ -18,6 +18,12 @@ async function mockSupabaseRoute(page: Page) {
1818 } ) ;
1919}
2020
21+ const bundle = process . env . PW_BUNDLE || '' ;
22+ // We only want to run this in non-CDN bundle mode
23+ if ( bundle . startsWith ( 'bundle' ) ) {
24+ sentryTest . skip ( ) ;
25+ }
26+
2127sentryTest ( 'should capture Supabase queue spans from client.schema(...).rpc' , async ( { getLocalTestUrl, page } ) => {
2228 await mockSupabaseRoute ( page ) ;
2329
You can’t perform that action at this time.
0 commit comments