Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
s1gr1d committed Jan 8, 2025
1 parent 76cc18b commit 333d210
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/solidstart/test/config/withSentry.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ describe('withSentry()', () => {
});
const names = config?.vite.plugins.flat().map((plugin: Plugin) => plugin.name);
expect(names).toEqual([
'sentry-solidstart-build-instrumentation-file',
'sentry-solidstart-source-maps',
'sentry-telemetry-plugin',
'sentry-vite-release-injection-plugin',
'sentry-debug-id-upload-plugin',
'sentry-vite-debug-id-injection-plugin',
'sentry-vite-debug-id-upload-plugin',
'sentry-file-deletion-plugin',
'sentry-solidstart-build-instrumentation-file',
]);
});

Expand All @@ -106,14 +106,14 @@ describe('withSentry()', () => {

const names = config?.vite.plugins.flat().map((plugin: Plugin) => plugin.name);
expect(names).toEqual([
'sentry-solidstart-build-instrumentation-file',
'sentry-solidstart-source-maps',
'sentry-telemetry-plugin',
'sentry-vite-release-injection-plugin',
'sentry-debug-id-upload-plugin',
'sentry-vite-debug-id-injection-plugin',
'sentry-vite-debug-id-upload-plugin',
'sentry-file-deletion-plugin',
'sentry-solidstart-build-instrumentation-file',
'my-test-plugin',
]);
});
Expand All @@ -138,14 +138,14 @@ describe('withSentry()', () => {
.plugins.flat()
.map((plugin: Plugin) => plugin.name);
expect(names).toEqual([
'sentry-solidstart-build-instrumentation-file',
'sentry-solidstart-source-maps',
'sentry-telemetry-plugin',
'sentry-vite-release-injection-plugin',
'sentry-debug-id-upload-plugin',
'sentry-vite-debug-id-injection-plugin',
'sentry-vite-debug-id-upload-plugin',
'sentry-file-deletion-plugin',
'sentry-solidstart-build-instrumentation-file',
'my-test-plugin',
]);
});
Expand Down
2 changes: 1 addition & 1 deletion packages/solidstart/test/vite/sentrySolidStartVite.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ describe('sentrySolidStartVite()', () => {
const plugins = getSentrySolidStartVitePlugins();
const names = plugins.map(plugin => plugin.name);
expect(names).toEqual([
'sentry-solidstart-build-instrumentation-file',
'sentry-solidstart-source-maps',
'sentry-telemetry-plugin',
'sentry-vite-release-injection-plugin',
'sentry-debug-id-upload-plugin',
'sentry-vite-debug-id-injection-plugin',
'sentry-vite-debug-id-upload-plugin',
'sentry-file-deletion-plugin',
'sentry-solidstart-build-instrumentation-file',
]);
});

Expand Down

0 comments on commit 333d210

Please sign in to comment.