File tree 2 files changed +12
-0
lines changed
dev-packages/browser-integration-tests/suites/integrations/supabase
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) {
19
19
} ) ;
20
20
}
21
21
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
+
22
28
sentryTest ( 'should capture Supabase queue spans from client.rpc' , async ( { getLocalTestUrl, page } ) => {
23
29
await mockSupabaseRoute ( page ) ;
24
30
Original file line number Diff line number Diff line change @@ -18,6 +18,12 @@ async function mockSupabaseRoute(page: Page) {
18
18
} ) ;
19
19
}
20
20
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
+
21
27
sentryTest ( 'should capture Supabase queue spans from client.schema(...).rpc' , async ( { getLocalTestUrl, page } ) => {
22
28
await mockSupabaseRoute ( page ) ;
23
29
You can’t perform that action at this time.
0 commit comments