Skip to content

Commit 0ac81c4

Browse files
author
Luca Forstner
committed
Switch e2e tests
1 parent a061e69 commit 0ac81c4

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,11 @@ Sentry.init({
66
dsn: useRuntimeConfig().public.sentry.dsn,
77
tunnel: `http://localhost:3031/`, // proxy server
88
tracesSampleRate: 1.0,
9-
trackComponents: true,
9+
integrations: [
10+
Sentry.vueIntegration({
11+
tracingOptions: {
12+
trackComponents: true,
13+
},
14+
}),
15+
],
1016
});

dev-packages/e2e-tests/test-applications/nuxt-3/sentry.client.config.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,11 @@ Sentry.init({
66
dsn: useRuntimeConfig().public.sentry.dsn,
77
tunnel: `http://localhost:3031/`, // proxy server
88
tracesSampleRate: 1.0,
9-
trackComponents: true,
9+
integrations: [
10+
Sentry.vueIntegration({
11+
tracingOptions: {
12+
trackComponents: true,
13+
},
14+
}),
15+
],
1016
});

dev-packages/e2e-tests/test-applications/nuxt-4/sentry.client.config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ Sentry.init({
66
dsn: useRuntimeConfig().public.sentry.dsn,
77
tunnel: `http://localhost:3031/`, // proxy server
88
tracesSampleRate: 1.0,
9-
trackComponents: true,
109
integrations: [
1110
Sentry.piniaIntegration(usePinia(), {
1211
actionTransformer: action => `Transformed: ${action}`,
@@ -15,5 +14,10 @@ Sentry.init({
1514
...state,
1615
}),
1716
}),
17+
Sentry.vueIntegration({
18+
tracingOptions: {
19+
trackComponents: true,
20+
},
21+
}),
1822
],
1923
});

0 commit comments

Comments
 (0)